From 0b91e836a30aa03a18e5dfb735eca56cc45c16fb Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Mon, 17 Dec 2012 18:15:51 -0500 Subject: 2.0: Remove support.optSelected --- src/attributes.js | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/attributes.js') 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() { -- cgit v1.2.3