.remove( [selector ] ) Returns: jQuery
Description: Remove the set of matched elements from the DOM.
-
version added: 1.0.remove( [selector ] )
-
selectorType: StringA selector expression that filters the set of matched elements to be removed.
-
Similar to .empty()
, the .remove()
method takes elements out of the DOM. Use .remove()
when you want to remove the element itself, as well as everything inside it. In addition to the elements themselves, all bound events and jQuery data associated with the elements are removed. To remove the elements without removing data and events, use .detach()
instead.
Consider the following HTML:
1
2
3
4
|
|
We can target any element for removal:
1
|
|
This will result in a DOM structure with the <div>
element deleted:
1
2
3
|
|
If we had any number of nested elements inside <div class="hello">
, they would be removed, too. Other jQuery constructs such as data or event handlers are erased as well.
We can also include a selector as an optional parameter. For example, we could rewrite the previous DOM removal code as follows:
1
|
|
This would result in the same DOM structure:
1
2
3
|
|
Examples:
Example: Removes all paragraphs from the DOM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
|
Example: Removes all paragraphs that contain "Hello" from the DOM. Analogous to doing $("p").filter(":contains('Hello')").remove()
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
|