Made a number of spacing changes to bring the code more-inline with the jQuery Core...
[jquery.git] / src / manipulation.js
1 var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
2         rleadingWhitespace = /^\s+/,
3         rxhtmlTag = /(<([\w:]+)[^>]*?)\/>/g,
4         rselfClosing = /^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,
5         rtagName = /<([\w:]+)/,
6         rtbody = /<tbody/i,
7         rhtml = /<|&\w+;/,
8         fcloseTag = function( all, front, tag ) {
9                 return rselfClosing.test( tag ) ?
10                         all :
11                         front + "></" + tag + ">";
12         },
13         wrapMap = {
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                 area: [ 1, "<map>", "</map>" ],
21                 _default: [ 0, "", "" ]
22         };
23
24 wrapMap.optgroup = wrapMap.option;
25 wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
26 wrapMap.th = wrapMap.td;
27
28 // IE can't serialize <link> and <script> tags normally
29 if ( !jQuery.support.htmlSerialize ) {
30         wrapMap._default = [ 1, "div<div>", "</div>" ];
31 }
32
33 jQuery.fn.extend({
34         text: function( text ) {
35                 if ( jQuery.isFunction(text) ) {
36                         return this.each(function() {
37                                 return jQuery(this).text( text.call(this) );
38                         });
39                 }
40
41                 if ( typeof text !== "object" && text !== undefined ) {
42                         return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );
43                 }
44
45                 return jQuery.getText( this );
46         },
47
48         wrapAll: function( html ) {
49                 if ( jQuery.isFunction( html ) ) {
50                         return this.each(function() {
51                                 jQuery(this).wrapAll( html.apply(this, arguments) );
52                         });
53                 }
54
55                 if ( this[0] ) {
56                         // The elements to wrap the target around
57                         var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);
58
59                         if ( this[0].parentNode ) {
60                                 wrap.insertBefore( this[0] );
61                         }
62
63                         wrap.map(function() {
64                                 var elem = this;
65
66                                 while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
67                                         elem = elem.firstChild;
68                                 }
69
70                                 return elem;
71                         }).append(this);
72                 }
73
74                 return this;
75         },
76
77         wrapInner: function( html ) {
78                 return this.each(function() {
79                         jQuery( this ).contents().wrapAll( html );
80                 });
81         },
82
83         wrap: function( html ) {
84                 return this.each(function() {
85                         jQuery( this ).wrapAll( html );
86                 });
87         },
88
89         unwrap: function() {
90                 return this.parent().each(function() {
91                         if ( !jQuery.nodeName( this, "body" ) ) {
92                                 jQuery( this ).replaceWith( this.childNodes );
93                         }
94                 }).end();
95         },
96
97         append: function() {
98                 return this.domManip(arguments, true, function( elem ) {
99                         if ( this.nodeType === 1 ) {
100                                 this.appendChild( elem );
101                         }
102                 });
103         },
104
105         prepend: function() {
106                 return this.domManip(arguments, true, function( elem ) {
107                         if ( this.nodeType === 1 ) {
108                                 this.insertBefore( elem, this.firstChild );
109                         }
110                 });
111         },
112
113         before: function() {
114                 if ( this[0] && this[0].parentNode ) {
115                         return this.domManip(arguments, false, function( elem ) {
116                                 this.parentNode.insertBefore( elem, this );
117                         });
118                 } else if ( arguments.length ) {
119                         var set = jQuery(arguments[0]);
120                         set.push.apply( set, this.toArray() );
121                         return this.pushStack( set, "before", arguments );
122                 }
123         },
124
125         after: function() {
126                 if ( this[0] && this[0].parentNode ) {
127                         return this.domManip(arguments, false, function( elem ) {
128                                 this.parentNode.insertBefore( elem, this.nextSibling );
129                         });
130                 } else if ( arguments.length ) {
131                         var set = this.pushStack( this, "after", arguments );
132                         set.push.apply( set, jQuery(arguments[0]).toArray() );
133                         return set;
134                 }
135         },
136
137         clone: function( events ) {
138                 // Do the clone
139                 var ret = this.map(function() {
140                         if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
141                                 // IE copies events bound via attachEvent when
142                                 // using cloneNode. Calling detachEvent on the
143                                 // clone will also remove the events from the orignal
144                                 // In order to get around this, we use innerHTML.
145                                 // Unfortunately, this means some modifications to
146                                 // attributes in IE that are actually only stored
147                                 // as properties will not be copied (such as the
148                                 // the name attribute on an input).
149                                 var html = this.outerHTML, ownerDocument = this.ownerDocument;
150                                 if ( !html ) {
151                                         var div = ownerDocument.createElement("div");
152                                         div.appendChild( this.cloneNode(true) );
153                                         html = div.innerHTML;
154                                 }
155
156                                 return jQuery.clean([html.replace(rinlinejQuery, "")
157                                         .replace(rleadingWhitespace, "")], ownerDocument)[0];
158                         } else {
159                                 return this.cloneNode(true);
160                         }
161                 });
162
163                 // Copy the events from the original to the clone
164                 if ( events === true ) {
165                         cloneCopyEvent( this, ret );
166                         cloneCopyEvent( this.find("*"), ret.find("*") );
167                 }
168
169                 // Return the cloned set
170                 return ret;
171         },
172
173         html: function( value ) {
174                 if ( value === undefined ) {
175                         return this[0] ?
176                                 this[0].innerHTML.replace(rinlinejQuery, "") :
177                                 null;
178
179                 // See if we can take a shortcut and just use innerHTML
180                 } else if ( typeof value === "string" && !/<script/i.test( value ) &&
181                         (jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&
182                         !wrapMap[ (rtagName.exec( value ) || ["", ""])[1].toLowerCase() ] ) {
183
184                         try {
185                                 for ( var i = 0, l = this.length; i < l; i++ ) {
186                                         // Remove element nodes and prevent memory leaks
187                                         if ( this[i].nodeType === 1 ) {
188                                                 cleanData( this[i].getElementsByTagName("*") );
189                                                 this[i].innerHTML = value;
190                                         }
191                                 }
192
193                         // If using innerHTML throws an exception, use the fallback method
194                         } catch(e) {
195                                 this.empty().append( value );
196                         }
197
198                 } else {
199                         this.empty().append( value );
200                 }
201
202                 return this;
203         },
204
205         replaceWith: function( value ) {
206                 if ( this[0] && this[0].parentNode ) {
207                         return this.each(function() {
208                                 var next = this.nextSibling, parent = this.parentNode;
209
210                                 jQuery(this).remove();
211
212                                 if ( next ) {
213                                         jQuery(next).before( value );
214                                 } else {
215                                         jQuery(parent).append( value );
216                                 }
217                         });
218                 } else {
219                         return this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value );
220                 }
221         },
222
223         detach: function( selector ) {
224                 return this.remove( selector, true );
225         },
226
227         domManip: function( args, table, callback ) {
228                 var results, first, value = args[0], scripts = [];
229
230                 if ( jQuery.isFunction(value) ) {
231                         return this.each(function() {
232                                 args[0] = value.call(this);
233                                 return jQuery(this).domManip( args, table, callback );
234                         });
235                 }
236
237                 if ( this[0] ) {
238                         // If we're in a fragment, just use that instead of building a new one
239                         if ( args[0] && args[0].parentNode && args[0].parentNode.nodeType === 11 ) {
240                                 results = { fragment: args[0].parentNode };
241                         } else {
242                                 results = buildFragment( args, this, scripts );
243                         }
244
245                         first = results.fragment.firstChild;
246
247                         if ( first ) {
248                                 table = table && jQuery.nodeName( first, "tr" );
249
250                                 for ( var i = 0, l = this.length; i < l; i++ ) {
251                                         callback.call(
252                                                 table ?
253                                                         root(this[i], first) :
254                                                         this[i],
255                                                 results.cacheable || this.length > 1 || i > 0 ?
256                                                         results.fragment.cloneNode(true) :
257                                                         results.fragment
258                                         );
259                                 }
260                         }
261
262                         if ( scripts ) {
263                                 jQuery.each( scripts, evalScript );
264                         }
265                 }
266
267                 return this;
268
269                 function root( elem, cur ) {
270                         return jQuery.nodeName(elem, "table") ?
271                                 (elem.getElementsByTagName("tbody")[0] ||
272                                 elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
273                                 elem;
274                 }
275         }
276 });
277
278 function cloneCopyEvent(orig, ret) {
279         var i = 0;
280
281         ret.each(function() {
282                 if ( this.nodeName !== (orig[i] && orig[i].nodeName) ) {
283                         return;
284                 }
285
286                 jQuery.data( this, jQuery.data( orig[i++] ) );
287         });
288 }
289
290 function buildFragment( args, nodes, scripts ) {
291         var fragment, cacheable, cached, cacheresults, doc;
292
293         if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 && args[0].indexOf("<option") < 0 ) {
294                 cacheable = true;
295                 cacheresults = jQuery.fragments[ args[0] ];
296                 if ( cacheresults ) {
297                         if ( cacheresults !== 1 ) {
298                                 fragment = cacheresults;
299                         }
300                         cached = true;
301                 }
302         }
303
304         if ( !fragment ) {
305                 doc = (nodes && nodes[0] ? nodes[0].ownerDocument || nodes[0] : document);
306                 fragment = doc.createDocumentFragment();
307                 jQuery.clean( args, doc, fragment, scripts );
308         }
309
310         if ( cacheable ) {
311                 jQuery.fragments[ args[0] ] = cacheresults ? fragment : 1;
312         }
313
314         return { fragment: fragment, cacheable: cacheable };
315 }
316
317 jQuery.fragments = {};
318
319 jQuery.each({
320         appendTo: "append",
321         prependTo: "prepend",
322         insertBefore: "before",
323         insertAfter: "after",
324         replaceAll: "replaceWith"
325 }, function( name, original ) {
326         jQuery.fn[ name ] = function( selector ) {
327                 var ret = [], insert = jQuery( selector );
328
329                 for ( var i = 0, l = insert.length; i < l; i++ ) {
330                         var elems = (i > 0 ? this.clone(true) : this).get();
331                         jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
332                         ret = ret.concat( elems );
333                 }
334                 return this.pushStack( ret, name, insert.selector );
335         };
336 });
337
338 jQuery.each({
339         // keepData is for internal use only--do not document
340         remove: function( selector, keepData ) {
341                 if ( !selector || jQuery.filter( selector, [ this ] ).length ) {
342                         if ( !keepData && this.nodeType === 1 ) {
343                                 cleanData( this.getElementsByTagName("*") );
344                                 cleanData( [ this ] );
345                         }
346
347                         if ( this.parentNode ) {
348                                  this.parentNode.removeChild( this );
349                         }
350                 }
351         },
352
353         empty: function() {
354                 // Remove element nodes and prevent memory leaks
355                 if ( this.nodeType === 1 ) {
356                         cleanData( this.getElementsByTagName("*") );
357                 }
358
359                 // Remove any remaining nodes
360                 while ( this.firstChild ) {
361                         this.removeChild( this.firstChild );
362                 }
363         }
364 }, function( name, fn ) {
365         jQuery.fn[ name ] = function() {
366                 return this.each( fn, arguments );
367         };
368 });
369
370 jQuery.extend({
371         clean: function( elems, context, fragment, scripts ) {
372                 context = context || document;
373
374                 // !context.createElement fails in IE with an error but returns typeof 'object'
375                 if ( typeof context.createElement === "undefined" ) {
376                         context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
377                 }
378
379                 var ret = [];
380
381                 jQuery.each(elems, function( i, elem ) {
382                         if ( typeof elem === "number" ) {
383                                 elem += '';
384                         }
385
386                         if ( !elem ) {
387                                 return;
388                         }
389
390                         // Convert html string into DOM nodes
391                         if ( typeof elem === "string" && !rhtml.test( elem ) ) {
392                                 elem = context.createTextNode( elem );
393
394                         } else if ( typeof elem === "string" ) {
395                                 // Fix "XHTML"-style tags in all browsers
396                                 elem = elem.replace(rxhtmlTag, fcloseTag);
397
398                                 // Trim whitespace, otherwise indexOf won't work as expected
399                                 var tag = (rtagName.exec( elem ) || ["", ""])[1].toLowerCase(),
400                                         wrap = wrapMap[ tag ] || wrapMap._default,
401                                         depth = wrap[0],
402                                         div = context.createElement("div");
403
404                                 // Go to html and back, then peel off extra wrappers
405                                 div.innerHTML = wrap[1] + elem + wrap[2];
406
407                                 // Move to the right depth
408                                 while ( depth-- ) {
409                                         div = div.lastChild;
410                                 }
411
412                                 // Remove IE's autoinserted <tbody> from table fragments
413                                 if ( !jQuery.support.tbody ) {
414
415                                         // String was a <table>, *may* have spurious <tbody>
416                                         var hasBody = rtbody.test(elem),
417                                                 tbody = tag === "table" && !hasBody ?
418                                                         div.firstChild && div.firstChild.childNodes :
419
420                                                         // String was a bare <thead> or <tfoot>
421                                                         wrap[1] === "<table>" && !hasBody ?
422                                                                 div.childNodes :
423                                                                 [];
424
425                                         for ( var j = tbody.length - 1; j >= 0 ; --j ) {
426                                                 if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) {
427                                                         tbody[ j ].parentNode.removeChild( tbody[ j ] );
428                                                 }
429                                         }
430
431                                 }
432
433                                 // IE completely kills leading whitespace when innerHTML is used
434                                 if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
435                                         div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );
436                                 }
437
438                                 elem = jQuery.makeArray( div.childNodes );
439                         }
440
441                         if ( elem.nodeType ) {
442                                 ret.push( elem );
443                         } else {
444                                 ret = jQuery.merge( ret, elem );
445                         }
446
447                 });
448
449                 if ( fragment ) {
450                         for ( var i = 0; ret[i]; i++ ) {
451                                 if ( scripts && jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
452                                         scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
453                                 } else {
454                                         if ( ret[i].nodeType === 1 ) {
455                                                 ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
456                                         }
457                                         fragment.appendChild( ret[i] );
458                                 }
459                         }
460                 }
461
462                 return ret;
463         }
464 });
465
466 function cleanData( elems ) {
467         for ( var i = 0, elem, id; (elem = elems[i]) != null; i++ ) {
468                 if ( !jQuery.noData[elem.nodeName.toLowerCase()] && (id = elem[expando]) ) {
469                         delete jQuery.cache[ id ];
470                 }
471         }
472 }