I need to know when any checkbox on the page is checked:
e.g.
I tried this in Jquery
Try this
$('input:checkbox').change(function(){ if(this.checked) alert('checked'); else alert('not checked'); });