From jQuery JavaScript Library
(Redirected from
DOM/Manipulation)
Inserting Inside:| Name | Type |
| append( content )
| Returns: jQuery |
| Append content to the inside of every matched element. |
| appendTo( content )
| Returns: jQuery |
| Append all of the matched elements to another, specified, set of elements. |
| prepend( content )
| Returns: jQuery |
| Prepend content to the inside of every matched element. |
| prependTo( content )
| Returns: jQuery |
| Prepend all of the matched elements to another, specified, set of elements. |
Inserting Outside:| Name | Type |
| after( content )
| Returns: jQuery |
| Insert content after each of the matched elements. |
| before( content )
| Returns: jQuery |
| Insert content before each of the matched elements. |
| insertAfter( content )
| Returns: jQuery |
| Insert all of the matched elements after another, specified, set of elements. |
| insertBefore( content )
| Returns: jQuery |
| Insert all of the matched elements before another, specified, set of elements. |
Inserting Around:| Name | Type |
| wrap( html )
| Returns: jQuery |
| Wrap each matched element with the specified HTML content. |
| wrap( elem )
| Returns: jQuery |
| Wrap each matched element with the specified element. |
Removing:| Name | Type |
| empty( )
| Returns: jQuery |
| Remove all child nodes from the set of matched elements. |
| remove( expr )
| Returns: jQuery |
| Removes all matched elements from the DOM. |
Copying:| Name | Type |
| clone( )
| Returns: jQuery |
| Clone matched DOM Elements and select the clones. |
| clone( true )
| Returns: jQuery |
| Clone matched DOM Elements, and all their event handlers, and select the clones. |