I need to know when any checkbox on the page is checked:
e.g.
I tried this in Jquery
$("input[type='checkbox']").click(function(){ alert("checked"); });
Just a normal .click will do.
.click