Fixed an issue with script nodes being removed incorrectly, fixes #3737.

This commit is contained in:
John Resig 2009-01-10 01:07:59 +00:00
parent afb05081c0
commit 29bf601f34
2 changed files with 5 additions and 2 deletions

View file

@ -922,7 +922,7 @@ jQuery.extend({
if ( fragment ) {
for ( var i = 0; ret[i]; i++ ) {
if ( jQuery.nodeName( ret[i], "script" ) ) {
scripts.push( ret[i].parentNode.removeChild( ret[i] ) );
scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
} else {
if ( ret[i].nodeType === 1 )
ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );