Can you please take a look at This Demo and let me know why the toggle
is not functioning well on checking and Un-checking the checkbox?
Here is the code I have:
$(document).ready(function(){
$('.checker').toggle(
function () {
$('#check').attr('Checked','Checked');
},
function () {
$('#check').removeAttr('Checked');
}
);
});
Thanks