using check box as in http://jqueryui.com/button/#checkbox (not the button set)
and want a start over button to uncheck all JQuery check boxes, using Jquery UI the checkboxes are created as inputs so that prop below does not work
<script>
$(function() {
$( "#startover" ).click(function() {
$("#mycheck").prop("checked", false);
});
});
Code:
<input type="checkbox" id="mycheck" ><label for="mycheck">clickme</label>