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;
test("empty()", function() {
- expect( 3 );
+ expect( 6 );
equal( jQuery("#ap").children().empty().text().length, 0, "Check text is removed" );
equal( jQuery("#ap").children().length, 4, "Check elements are not removed" );
var j = jQuery("#nonnodes").contents();
j.empty();
equal( j.html(), "", "Check node,textnode,comment empty works" );
-});
+
+ // Ensure oldIE empties selects (#12336)
+ notEqual( $("#select1").find("option").length, 0, "Have some initial options" );
+ $("#select1").empty();
+ equal( $("#select1").find("option").length, 0, "No more option elements found" );
+ equal( $("#select1")[0].options.length, 0, "options.length cleared as well" );
+ });
test( "jQuery.cleanData", function() {