aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/manipulation.js')
-rw-r--r--src/manipulation.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/manipulation.js b/src/manipulation.js
index 5fec948cb..e8c0fe46f 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -192,6 +192,12 @@ jQuery.fn.extend({
while ( elem.firstChild ) {
elem.removeChild( elem.firstChild );
}
+
+ // If this is a select, ensure that it displays empty (#12336)
+ // Support: IE<9
+ if ( elem.options && jQuery.nodeName( elem, "select" ) ) {
+ elem.options.length = 0;
+ }
}
return this;