> I was trying to select for checked checkboxes so I tried > $(":checkbox[checked=true]")
That will select all checkboxes with a checked attribute equal to the string "true" which is probably not what you want.
> I was trying to select for checked checkboxes so I tried > $(":checkbox[checked=true]")
That will select all checkboxes with a checked attribute equal to the string "true" which is probably not what you want.