Side navigation
#6360 closed bug (worksforme)
Opened March 26, 2010 12:51PM UTC
Closed October 15, 2010 02:08AM UTC
Last modified January 11, 2011 01:18PM UTC
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
Attachments (0)
Change History (2)
Changed October 15, 2010 02:08AM UTC by comment:1
keywords: | → opera checked checkbox selector |
---|---|
priority: | → low |
resolution: | → worksforme |
status: | new → closed |
Changed January 11, 2011 01:18PM UTC by comment:2
I found in Opera:
$('.xclass input:checked') omit disabled input fields
$('.xclass input').filter(':checked') include all inputs
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.