Home | History | Annotate | Download | only in parse-only

Lines Matching refs:html

29 	// A simple way to check for HTML strings or ID strings
47 // Handle HTML strings
49 // Are we dealing with HTML string or an ID?
55 // HANDLE: $(html) -> $(array)
219 wrapAll: function( html ) {
222 var wrap = jQuery( html, this[0].ownerDocument ).clone();
240 wrapInner: function( html ) {
242 jQuery( this ).contents().wrapAll( html );
246 wrap: function( html ) {
248 jQuery( this ).wrapAll( html );
313 var html = this.outerHTML;
314 if ( !html ) {
317 html = div.innerHTML;
320 return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g, "").replace(/^\s*/, "")])[0];
483 html: function( value ) {
641 return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
649 // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
871 // Convert html string into DOM nodes
910 // Go to html and back, then peel off extra wrappers
2215 // (ID selectors don't work in non-HTML documents)
2339 return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
2828 // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
3261 dataType: "html",
3264 // If successful, inject the HTML into all the matched elements
3267 self.html( selector ?
3386 html: "text/html",
4225 html = '<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';
4230 container.innerHTML = html;
4269 parentOffset = /^body|html$/i.test(offsetParent[0].tagName) ? { top: 0, left: 0 } : offsetParent.offset();
4293 while ( offsetParent && (!/^body|html$/i.test(offsetParent.tagName) && jQuery.css(offsetParent, 'position') == 'static') )