Use the isXML function from Sizzle.
This commit is contained in:
parent
3f7fc25494
commit
19ad49e607
|
@ -342,14 +342,6 @@ jQuery.extend({
|
|||
return true;
|
||||
},
|
||||
|
||||
// check if an element is in a (or is an) XML document
|
||||
isXMLDoc: function( elem ) {
|
||||
// documentElement is verified for cases where it doesn't yet exist
|
||||
// (such as loading iframes in IE - #4833)
|
||||
var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;
|
||||
return documentElement ? documentElement.nodeName !== "HTML" : false;
|
||||
},
|
||||
|
||||
// Evalulates a script in a global context
|
||||
globalEval: function( data ) {
|
||||
if ( data && rnotwhite.test(data) ) {
|
||||
|
|
|
@ -3,5 +3,6 @@ jQuery.expr = Sizzle.selectors;
|
|||
jQuery.expr[":"] = jQuery.expr.filters;
|
||||
jQuery.unique = Sizzle.uniqueSort;
|
||||
jQuery.getText = getText;
|
||||
jQuery.isXMLDoc = isXML;
|
||||
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue