JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://www.pixelmatrixdesign.com/uniform/javascripts/jquery.uniform.js"></script>
<link rel="stylesheet" href="http://www.pixelmatrixdesign.com/uniform/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(){
   $("#check2").attr("checked", true);
});