#6360 closed bug (worksforme)
opera 10.00 :checked selector
Reported by: | ilya.devel | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.4.3 |
Component: | selector | Version: | 1.4.2 |
Keywords: | opera checked checkbox selector | Cc: | |
Blocked by: | Blocking: |
Description
this doesn't work in opera 10.00 var type = $('#transport input[name=trans_type]:checked');
but this still work var type = $('#transport input[name=trans_type]').filter(':checked');
please, let me know if i misuse this selector
Change History (2)
comment:1 Changed 12 years ago by
Keywords: | opera checked checkbox selector added |
---|---|
Priority: | → low |
Resolution: | → worksforme |
Status: | new → closed |
comment:2 Changed 12 years ago by
I found in Opera: $('.xclass input:checked') omit disabled input fields $('.xclass input').filter(':checked') include all inputs
Note: See
TracTickets for help on using
tickets.
I've tested your bug in Opera 10.00 with the following test case Live Test Case and it's working fine returning the correct length in both Opera and FireFox.