JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://uniformjs.com/javascripts/jquery.uniform.js"></script>
<link rel="stylesheet" href="http://uniformjs.com/stylesheets/uniform.default.css">
<label><input type="checkbox" id="check1"> Checkbox1</label>

<label><input type="checkbox" id="check2"> Checkbox1</label>

JavaScript

$("input:checkbox").uniform();

$("#check1").live("click", function(){
   var two = $("#check2").attr("checked", this.checked);
    $.uniform.update(two);
});