Fixed bug in testsuite, tried to fix problem with :selected in Opera 8.54: It does not work the default selections
This commit is contained in:
parent
fac6a87dcf
commit
b30a469a5a
2 changed files with 5 additions and 4 deletions
2
src/jquery/jquery.js
vendored
2
src/jquery/jquery.js
vendored
|
@ -1565,7 +1565,7 @@ jQuery.extend({
|
|||
enabled: "!a.disabled",
|
||||
disabled: "a.disabled",
|
||||
checked: "a.checked",
|
||||
selected: "a.selected",
|
||||
selected: "a.selected || jQuery.attr(a, 'selected')",
|
||||
|
||||
// Form elements
|
||||
text: "a.type=='text'",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue