I want to use the code below to find all check boxes in a check box list with css class. I know with a hyper link I would do $(a.CssTest').click(function (e) {. Is there a way I can inject
a css class on all check boxes within a check box list or? Or Maybe the option would be every check box within the table Id. run the code below.
$(function () {
// Whenever any link is clicked
$('table.CssTest').click(function (e) {
&n ...
Go to the complete details ...