1 var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
2 rleadingWhitespace = /^\s+/,
3 rxhtmlTag = /(<(\w+)[^>]*?)\/>/g,
4 rselfClosing = /^(?:abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i,
8 fcloseTag = function(all, front, tag){
9 return rselfClosing.test(tag) ?
11 front + "></" + tag + ">";
14 option: [ 1, "<select multiple='multiple'>", "</select>" ],
15 legend: [ 1, "<fieldset>", "</fieldset>" ],
16 thead: [ 1, "<table>", "</table>" ],
17 tr: [ 2, "<table><tbody>", "</tbody></table>" ],
18 td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
19 col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
20 _default: [ 0, "", "" ]
23 wrapMap.optgroup = wrapMap.option;
24 wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
25 wrapMap.th = wrapMap.td;
27 // IE can't serialize <link> and <script> tags normally
28 if ( !jQuery.support.htmlSerialize ) {
29 wrapMap._default = [ 1, "div<div>", "</div>" ];
33 text: function( text ) {
34 if ( typeof text !== "object" && text !== undefined )
35 return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );
39 jQuery.each( text || this, function(){
40 jQuery.each( this.childNodes, function(){
41 if ( this.nodeType !== 8 ) {
42 ret += this.nodeType !== 1 ?
44 jQuery.fn.text( [ this ] );
52 wrapAll: function( html ) {
53 if ( jQuery.isFunction( html ) ) {
54 return this.each(function() {
55 jQuery(this).wrapAll( html.apply(this, arguments) );
60 // The elements to wrap the target around
61 var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone();
63 if ( this[0].parentNode ) {
64 wrap.insertBefore( this[0] );
70 while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
71 elem = elem.firstChild;
81 wrapInner: function( html ) {
82 return this.each(function(){
83 jQuery( this ).contents().wrapAll( html );
87 wrap: function( html ) {
88 return this.each(function(){
89 jQuery( this ).wrapAll( html );
94 return this.parent().each(function(){
95 if ( !jQuery.nodeName( this, "body" ) ) {
96 jQuery( this ).replaceWith( this.childNodes );
102 return this.domManip(arguments, true, function(elem){
103 if ( this.nodeType === 1 ) {
104 this.appendChild( elem );
109 prepend: function() {
110 return this.domManip(arguments, true, function(elem){
111 if ( this.nodeType === 1 ) {
112 this.insertBefore( elem, this.firstChild );
118 if ( this[0] && this[0].parentNode ) {
119 return this.domManip(arguments, false, function(elem){
120 this.parentNode.insertBefore( elem, this );
122 } else if ( arguments.length ) {
123 var set = jQuery(arguments[0]);
124 set.push.apply( set, this.toArray() );
125 return this.pushStack( set, "before", arguments );
130 if ( this[0] && this[0].parentNode ) {
131 return this.domManip(arguments, false, function(elem){
132 this.parentNode.insertBefore( elem, this.nextSibling );
134 } else if ( arguments.length ) {
135 var set = this.pushStack( this, "after", arguments );
136 set.push.apply( set, jQuery(arguments[0]).toArray() );
141 clone: function( events ) {
143 var ret = this.map(function(){
144 if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
145 // IE copies events bound via attachEvent when
146 // using cloneNode. Calling detachEvent on the
147 // clone will also remove the events from the orignal
148 // In order to get around this, we use innerHTML.
149 // Unfortunately, this means some modifications to
150 // attributes in IE that are actually only stored
151 // as properties will not be copied (such as the
152 // the name attribute on an input).
153 var html = this.outerHTML, ownerDocument = this.ownerDocument;
155 var div = ownerDocument.createElement("div");
156 div.appendChild( this.cloneNode(true) );
157 html = div.innerHTML;
160 return jQuery.clean([html.replace(rinlinejQuery, "")
161 .replace(rleadingWhitespace, "")], ownerDocument)[0];
163 return this.cloneNode(true);
167 // Copy the events from the original to the clone
168 if ( events === true ) {
169 var orig = this.find("*").andSelf(), i = 0;
171 ret.find("*").andSelf().each(function(){
172 if ( this.nodeName !== orig[i].nodeName ) { return; }
174 var events = jQuery.data( orig[i], "events" );
176 for ( var type in events ) {
177 for ( var handler in events[ type ] ) {
178 jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
186 // Return the cloned set
190 html: function( value ) {
191 if ( value === undefined ) {
193 this[0].innerHTML.replace(rinlinejQuery, "") :
196 // See if we can take a shortcut and just use innerHTML
197 } else if ( typeof value === "string" && !/<script/i.test( value ) &&
198 (!jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&
199 !wrapMap[ (rtagName.exec( value ) || ["", ""])[1].toLowerCase() ] ) {
202 for ( var i = 0, l = this.length; i < l; i++ ) {
203 // Remove element nodes and prevent memory leaks
204 if ( this[i].nodeType === 1 ) {
205 cleanData( this[i].getElementsByTagName("*") );
206 this[i].innerHTML = value;
210 // If using innerHTML throws an exception, use the fallback method
212 this.empty().append( value );
216 this.empty().append( value );
222 replaceWith: function( value ) {
223 if ( this[0] && this[0].parentNode ) {
224 return this.after( value ).remove();
226 return this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value );
230 detach: function( selector ) {
231 return this.remove( selector, true );
234 domManip: function( args, table, callback ) {
235 var results, first, value = args[0], scripts = [];
237 if ( jQuery.isFunction(value) ) {
238 return this.each(function() {
239 args[0] = value.call(this);
240 return jQuery(this).domManip( args, table, callback );
245 // If we're in a fragment, just use that instead of building a new one
246 if ( args[0] && args[0].parentNode && args[0].parentNode.nodeType === 11 ) {
247 results = { fragment: args[0].parentNode };
249 results = buildFragment( args, this, scripts );
252 first = results.fragment.firstChild;
255 table = table && jQuery.nodeName( first, "tr" );
257 for ( var i = 0, l = this.length; i < l; i++ ) {
260 root(this[i], first) :
262 results.cacheable || this.length > 1 || i > 0 ?
263 results.fragment.cloneNode(true) :
270 jQuery.each( scripts, evalScript );
276 function root( elem, cur ) {
277 return jQuery.nodeName(elem, "table") ?
278 (elem.getElementsByTagName("tbody")[0] ||
279 elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
285 function buildFragment(args, nodes, scripts){
286 var fragment, cacheable, cached, cacheresults, doc;
288 if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 && args[0].indexOf("<option") < 0 ) {
290 cacheresults = jQuery.fragments[ args[0] ];
291 if ( cacheresults ) {
292 if ( cacheresults !== 1 ) {
293 fragment = cacheresults;
300 doc = (nodes && nodes[0] ? nodes[0].ownerDocument || nodes[0] : document);
301 fragment = doc.createDocumentFragment();
302 jQuery.clean( args, doc, fragment, scripts );
306 jQuery.fragments[ args[0] ] = cacheresults ? fragment : 1;
309 return { fragment: fragment, cacheable: cacheable };
312 jQuery.fragments = {};
316 prependTo: "prepend",
317 insertBefore: "before",
318 insertAfter: "after",
319 replaceAll: "replaceWith"
320 }, function(name, original){
321 jQuery.fn[ name ] = function( selector ) {
322 var ret = [], insert = jQuery( selector );
324 for ( var i = 0, l = insert.length; i < l; i++ ) {
325 var elems = (i > 0 ? this.clone(true) : this).get();
326 jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
327 ret = ret.concat( elems );
329 return this.pushStack( ret, name, insert.selector );
334 // keepData is for internal use only--do not document
335 remove: function( selector, keepData ) {
336 if ( !selector || jQuery.multiFilter( selector, [ this ] ).length ) {
337 if ( !keepData && this.nodeType === 1 ) {
338 cleanData( this.getElementsByTagName("*") );
339 cleanData( [ this ] );
342 if ( this.parentNode ) {
343 this.parentNode.removeChild( this );
349 // Remove element nodes and prevent memory leaks
350 if ( this.nodeType === 1 ) {
351 cleanData( this.getElementsByTagName("*") );
354 // Remove any remaining nodes
355 while ( this.firstChild ) {
356 this.removeChild( this.firstChild );
359 }, function(name, fn){
360 jQuery.fn[ name ] = function(){
361 return this.each( fn, arguments );
366 clean: function( elems, context, fragment, scripts ) {
367 context = context || document;
369 // !context.createElement fails in IE with an error but returns typeof 'object'
370 if ( typeof context.createElement === "undefined" ) {
371 context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
374 var ret = [], div = context.createElement("div");
376 jQuery.each(elems, function(i, elem){
377 if ( typeof elem === "number" ) {
381 if ( !elem ) { return; }
383 // Convert html string into DOM nodes
384 if ( typeof elem === "string" && !rhtml.test( elem ) ) {
385 elem = context.createTextNode( elem );
387 } else if ( typeof elem === "string" ) {
388 // Fix "XHTML"-style tags in all browsers
389 elem = elem.replace(rxhtmlTag, fcloseTag);
391 // Trim whitespace, otherwise indexOf won't work as expected
392 var tag = (rtagName.exec( elem ) || ["", ""])[1].toLowerCase(),
393 wrap = wrapMap[ tag ] || wrapMap._default,
396 // Go to html and back, then peel off extra wrappers
397 div.innerHTML = wrap[1] + elem + wrap[2];
399 // Move to the right depth
404 // Remove IE's autoinserted <tbody> from table fragments
405 if ( !jQuery.support.tbody ) {
407 // String was a <table>, *may* have spurious <tbody>
408 var hasBody = rtbody.test(elem),
409 tbody = tag === "table" && !hasBody ?
410 div.firstChild && div.firstChild.childNodes :
412 // String was a bare <thead> or <tfoot>
413 wrap[1] == "<table>" && !hasBody ?
417 for ( var j = tbody.length - 1; j >= 0 ; --j ) {
418 if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) {
419 tbody[ j ].parentNode.removeChild( tbody[ j ] );
425 // IE completely kills leading whitespace when innerHTML is used
426 if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
427 div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );
430 elem = jQuery.makeArray( div.childNodes );
433 if ( elem.nodeType ) {
436 ret = jQuery.merge( ret, elem );
442 for ( var i = 0; ret[i]; i++ ) {
443 if ( scripts && jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
444 scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
446 if ( ret[i].nodeType === 1 ) {
447 ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
449 fragment.appendChild( ret[i] );
458 function cleanData( elems ) {
459 for ( var i = 0, elem, id; (elem = elems[i]) != null; i++ ) {
460 if ( (id = elem[expando]) ) {
461 delete jQuery.cache[ id ];