i have jquery code that loop through all checkboxes.
$('input[type=checkbox]').each(function () {
I now need to make this code more restrictive because i now have other checkboxes on this page. how can i change this so it only loops through all checkboxes with a certain class name?
$('input[type=checkbox].class').each(function () {