Вход Регистрация
Файл: Main Website Files/assets/bower_components/jquery/src/core/parseHTML.js
Строк: 43
<?php
define
([
    
"../core",
    
"./var/rsingleTag",
    
"../manipulation" // buildFragment
], function( jQueryrsingleTag ) {

// data: string of html
// context (optional): If specified, the fragment will be created in this context, defaults to document
// keepScripts (optional): If true, will include scripts passed in the html string
jQuery.parseHTML = function( datacontextkeepScripts ) {
    if ( !
data || typeof data !== "string" ) {
        return 
null;
    }
    if ( 
typeof context === "boolean" ) {
        
keepScripts context;
        
context false;
    }
    
context context || document;

    var 
parsed rsingleTag.execdata ),
        
scripts = !keepScripts && [];

    
// Single tag
    
if ( parsed ) {
        return [ 
context.createElementparsed[1] ) ];
    }

    
parsed jQuery.buildFragment( [ data ], contextscripts );

    if ( 
scripts && scripts.length ) {
        
jQueryscripts ).remove();
    }

    return 
jQuery.merge( [], parsed.childNodes );
};

return 
jQuery.parseHTML;

});
?>
Онлайн: 1
Реклама