vote up 1 vote down star

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

flag

77% accept rate

3 Answers

vote up 7 vote down check

try $("input[type=checkbox]:checked").each...

Edit or even sweeter: $("input:checkbox:checked").each...

That works for me in IE8.

link|flag
Fixed your answer, :checkbox alone is not recommended... – Paolo Bergantino Jul 13 at 11:16
thank you, good sir (: – peirix Jul 13 at 11:28
vote up 1 vote down

A workaround:

$("input:checked").each(function() {
    //Do Stuff
});
link|flag
1  
this would hit radio buttons as well, though... – peirix Jun 26 at 8:22
vote up 1 vote down

Try this

 $("input:checked").click(function(){
			alert('abc'); 			
    		}) ;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.