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,
5 rtagName = /<([\w:]+)/,
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 ) );
40 jQuery.each( this, function() {
41 // Get the text from text nodes and CDATA nodes
42 if ( this.nodeType === 3 || this.nodeType === 4 ) {
43 ret += this.nodeValue;
45 // Traverse everything else, except comment nodes
46 } else if ( this.nodeType !== 8 ) {
47 ret += jQuery.fn.text.call( this.childNodes );
54 wrapAll: function( html ) {
55 if ( jQuery.isFunction( html ) ) {
56 return this.each(function() {
57 jQuery(this).wrapAll( html.apply(this, arguments) );
62 // The elements to wrap the target around
63 var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone();
65 if ( this[0].parentNode ) {
66 wrap.insertBefore( this[0] );
72 while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
73 elem = elem.firstChild;
83 wrapInner: function( html ) {
84 return this.each(function(){
85 jQuery( this ).contents().wrapAll( html );
89 wrap: function( html ) {
90 return this.each(function(){
91 jQuery( this ).wrapAll( html );
96 return this.parent().each(function(){
97 if ( !jQuery.nodeName( this, "body" ) ) {
98 jQuery( this ).replaceWith( this.childNodes );
104 return this.domManip(arguments, true, function(elem){
105 if ( this.nodeType === 1 ) {
106 this.appendChild( elem );
111 prepend: function() {
112 return this.domManip(arguments, true, function(elem){
113 if ( this.nodeType === 1 ) {
114 this.insertBefore( elem, this.firstChild );
120 if ( this[0] && this[0].parentNode ) {
121 return this.domManip(arguments, false, function(elem){
122 this.parentNode.insertBefore( elem, this );
124 } else if ( arguments.length ) {
125 var set = jQuery(arguments[0]);
126 set.push.apply( set, this.toArray() );
127 return this.pushStack( set, "before", arguments );
132 if ( this[0] && this[0].parentNode ) {
133 return this.domManip(arguments, false, function(elem){
134 this.parentNode.insertBefore( elem, this.nextSibling );
136 } else if ( arguments.length ) {
137 var set = this.pushStack( this, "after", arguments );
138 set.push.apply( set, jQuery(arguments[0]).toArray() );
143 clone: function( events ) {
145 var ret = this.map(function(){
146 if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
147 // IE copies events bound via attachEvent when
148 // using cloneNode. Calling detachEvent on the
149 // clone will also remove the events from the orignal
150 // In order to get around this, we use innerHTML.
151 // Unfortunately, this means some modifications to
152 // attributes in IE that are actually only stored
153 // as properties will not be copied (such as the
154 // the name attribute on an input).
155 var html = this.outerHTML, ownerDocument = this.ownerDocument;
157 var div = ownerDocument.createElement("div");
158 div.appendChild( this.cloneNode(true) );
159 html = div.innerHTML;
162 return jQuery.clean([html.replace(rinlinejQuery, "")
163 .replace(rleadingWhitespace, "")], ownerDocument)[0];
165 return this.cloneNode(true);
169 // Copy the events from the original to the clone
170 if ( events === true ) {
171 cloneCopyEvent( this, ret );
172 cloneCopyEvent( this.find("*"), ret.find("*") );
175 // Return the cloned set
179 html: function( value ) {
180 if ( value === undefined ) {
182 this[0].innerHTML.replace(rinlinejQuery, "") :
185 // See if we can take a shortcut and just use innerHTML
186 } else if ( typeof value === "string" && !/<script/i.test( value ) &&
187 (jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&
188 !wrapMap[ (rtagName.exec( value ) || ["", ""])[1].toLowerCase() ] ) {
191 for ( var i = 0, l = this.length; i < l; i++ ) {
192 // Remove element nodes and prevent memory leaks
193 if ( this[i].nodeType === 1 ) {
194 cleanData( this[i].getElementsByTagName("*") );
195 this[i].innerHTML = value;
199 // If using innerHTML throws an exception, use the fallback method
201 this.empty().append( value );
205 this.empty().append( value );
211 replaceWith: function( value ) {
212 if ( this[0] && this[0].parentNode ) {
213 return this.after( value ).remove();
215 return this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value );
219 detach: function( selector ) {
220 return this.remove( selector, true );
223 domManip: function( args, table, callback ) {
224 var results, first, value = args[0], scripts = [];
226 if ( jQuery.isFunction(value) ) {
227 return this.each(function() {
228 args[0] = value.call(this);
229 return jQuery(this).domManip( args, table, callback );
234 // If we're in a fragment, just use that instead of building a new one
235 if ( args[0] && args[0].parentNode && args[0].parentNode.nodeType === 11 ) {
236 results = { fragment: args[0].parentNode };
238 results = buildFragment( args, this, scripts );
241 first = results.fragment.firstChild;
244 table = table && jQuery.nodeName( first, "tr" );
246 for ( var i = 0, l = this.length; i < l; i++ ) {
249 root(this[i], first) :
251 results.cacheable || this.length > 1 || i > 0 ?
252 results.fragment.cloneNode(true) :
259 jQuery.each( scripts, evalScript );
265 function root( elem, cur ) {
266 return jQuery.nodeName(elem, "table") ?
267 (elem.getElementsByTagName("tbody")[0] ||
268 elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
274 function cloneCopyEvent(orig, ret) {
278 if ( this.nodeName !== orig[i].nodeName ) {
282 var events = jQuery.data( orig[i], "events" );
284 for ( var type in events ) {
285 for ( var handler in events[ type ] ) {
286 jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
292 function buildFragment(args, nodes, scripts){
293 var fragment, cacheable, cached, cacheresults, doc;
295 if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 && args[0].indexOf("<option") < 0 ) {
297 cacheresults = jQuery.fragments[ args[0] ];
298 if ( cacheresults ) {
299 if ( cacheresults !== 1 ) {
300 fragment = cacheresults;
307 doc = (nodes && nodes[0] ? nodes[0].ownerDocument || nodes[0] : document);
308 fragment = doc.createDocumentFragment();
309 jQuery.clean( args, doc, fragment, scripts );
313 jQuery.fragments[ args[0] ] = cacheresults ? fragment : 1;
316 return { fragment: fragment, cacheable: cacheable };
319 jQuery.fragments = {};
323 prependTo: "prepend",
324 insertBefore: "before",
325 insertAfter: "after",
326 replaceAll: "replaceWith"
327 }, function(name, original){
328 jQuery.fn[ name ] = function( selector ) {
329 var ret = [], insert = jQuery( selector );
331 for ( var i = 0, l = insert.length; i < l; i++ ) {
332 var elems = (i > 0 ? this.clone(true) : this).get();
333 jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
334 ret = ret.concat( elems );
336 return this.pushStack( ret, name, insert.selector );
341 // keepData is for internal use only--do not document
342 remove: function( selector, keepData ) {
343 if ( !selector || jQuery.filter( selector, [ this ] ).length ) {
344 if ( !keepData && this.nodeType === 1 ) {
345 cleanData( this.getElementsByTagName("*") );
346 cleanData( [ this ] );
349 if ( this.parentNode ) {
350 this.parentNode.removeChild( this );
356 // Remove element nodes and prevent memory leaks
357 if ( this.nodeType === 1 ) {
358 cleanData( this.getElementsByTagName("*") );
361 // Remove any remaining nodes
362 while ( this.firstChild ) {
363 this.removeChild( this.firstChild );
366 }, function(name, fn){
367 jQuery.fn[ name ] = function(){
368 return this.each( fn, arguments );
373 clean: function( elems, context, fragment, scripts ) {
374 context = context || document;
376 // !context.createElement fails in IE with an error but returns typeof 'object'
377 if ( typeof context.createElement === "undefined" ) {
378 context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
381 var ret = [], div = context.createElement("div");
383 jQuery.each(elems, function(i, elem){
384 if ( typeof elem === "number" ) {
388 if ( !elem ) { return; }
390 // Convert html string into DOM nodes
391 if ( typeof elem === "string" && !rhtml.test( elem ) ) {
392 elem = context.createTextNode( elem );
394 } else if ( typeof elem === "string" ) {
395 // Fix "XHTML"-style tags in all browsers
396 elem = elem.replace(rxhtmlTag, fcloseTag);
398 // Trim whitespace, otherwise indexOf won't work as expected
399 var tag = (rtagName.exec( elem ) || ["", ""])[1].toLowerCase(),
400 wrap = wrapMap[ tag ] || wrapMap._default,
403 // Go to html and back, then peel off extra wrappers
404 div.innerHTML = wrap[1] + elem + wrap[2];
406 // Move to the right depth
411 // Remove IE's autoinserted <tbody> from table fragments
412 if ( !jQuery.support.tbody ) {
414 // String was a <table>, *may* have spurious <tbody>
415 var hasBody = rtbody.test(elem),
416 tbody = tag === "table" && !hasBody ?
417 div.firstChild && div.firstChild.childNodes :
419 // String was a bare <thead> or <tfoot>
420 wrap[1] == "<table>" && !hasBody ?
424 for ( var j = tbody.length - 1; j >= 0 ; --j ) {
425 if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) {
426 tbody[ j ].parentNode.removeChild( tbody[ j ] );
432 // IE completely kills leading whitespace when innerHTML is used
433 if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
434 div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );
437 elem = jQuery.makeArray( div.childNodes );
440 if ( elem.nodeType ) {
443 ret = jQuery.merge( ret, elem );
449 for ( var i = 0; ret[i]; i++ ) {
450 if ( scripts && jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
451 scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
453 if ( ret[i].nodeType === 1 ) {
454 ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
456 fragment.appendChild( ret[i] );
465 function cleanData( elems ) {
466 for ( var i = 0, elem, id; (elem = elems[i]) != null; i++ ) {
467 if ( (id = elem[expando]) ) {
468 delete jQuery.cache[ id ];