aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2012-12-17 18:15:51 -0500
committerRick Waldron <waldron.rick@gmail.com>2012-12-31 13:20:24 -0500
commit0b91e836a30aa03a18e5dfb735eca56cc45c16fb (patch)
treeb7ff09173ef78c3f2b7c9d50dafd26ff95eea18b /src/attributes.js
parent049cc9d1eba974905f868accb1f54299bb69bb7a (diff)
downloadjquery-0b91e836a30aa03a18e5dfb735eca56cc45c16fb.tar.gz
jquery-0b91e836a30aa03a18e5dfb735eca56cc45c16fb.zip
2.0: Remove support.optSelected
Diffstat (limited to 'src/attributes.js')
-rw-r--r--src/attributes.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/attributes.js b/src/attributes.js
index 8e1934888..f94752368 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -610,26 +610,6 @@ if ( !jQuery.support.style ) {
};
}
-// Safari mis-reports the default selected property of an option
-// Accessing the parent's selectedIndex property fixes it
-if ( !jQuery.support.optSelected ) {
- jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {
- get: function( elem ) {
- var parent = elem.parentNode;
-
- if ( parent ) {
- parent.selectedIndex;
-
- // Make sure that it also works with optgroups, see #5701
- if ( parent.parentNode ) {
- parent.parentNode.selectedIndex;
- }
- }
- return null;
- }
- });
-}
-
// Radios and checkboxes getter/setter
if ( !jQuery.support.checkOn ) {
jQuery.each([ "radio", "checkbox" ], function() {