, , jQuery HTML- DOM. jQuery <div> innerHTML HTML-, $(...), DOM, <div> jQuery.
, , - <html>, <head> <body>, <div>. , , -: , , - .
, - - . .
$(
data.replace(/<(\/?)(head|html|body)(?=\s|>)/g, '<foo$1$2')
).filter("link, script, title").each(function(i) {
console.log($(this));
});
, , filter , . :
$(
data.replace(/<(\/?)(head|html|body)(?=\s|>)/g, '<foo$1$2')
).find('link,script,title').andSelf().filter("link,script,title").each(function(i) {
console.log($(this));
});