VOOZH about

URL: https://www.geeksforgeeks.org/jquery/jquery-remove-method/

⇱ jQuery remove() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

jQuery remove() Method

Last Updated : 10 Jul, 2023

The remove() method in JQuery is used to remove all the selected elements including all the text. This method also remove data and all the events of the selected elements.

Syntax:

$(selector).remove()

Return Value: It will return all the data of the selected elements deleted.

Example 1:

Input: $("p").remove()
Output: Output will be all the elements of the paragraph get deleted.

Example 1: In this example, we are using jQuery remove method.

Output:

👁 jquery-23


We can also find and remove elements using their class name with the help of JQuery remove() method.

Syntax:

$(".class_name").remove()

Return value: It will return all the portions deleted on the page with the class name.

Example 2:

Input: $(".geek").remove()
Output: Here "gfg!!!" get deleted.

Example 2: In this example, we are using jQuery remove() method.

Output:

👁 jquery-24

Comment
Article Tags:

Explore