I need to know when any checkbox on the page is checked:
e.g.
I tried this in Jquery
If you want to use .on this works
jQuery('input[type=checkbox]').on('change', function() { if (this.checked) { console.log('checked'); } });