I\'m trying to write a piece of jQuery code where, if all checkboxes are \"unchecked\", then all li tags have the class \"disabled.\"
But, if one checkbox (any checkbox)
I came across this post by accident and I thought I would add my shilling worth:
jQuery(':checkbox').click(function() { if (jQuery(this).is(':checked')) { alert("Checked"); } else { alert("Unchecked"); } });