I am using jquery to locate all the checkboxes in a table column that are checked. For that purpose I am using the following code:
$("input[type=checkbox][checked]").each(function() { //Do Stuff });
This works fine in Firefox 3 but does not work in IE8 or Safari. Can anyone explain why and/or provide a workaround?
EDIT: I'm using jQuery v1.3.2