w3resource

jQuery: Removes all child nodes from all paragraphs

jQuery Fundamental - II : Exercise-82

Removes all child nodes from all paragraphs.

Sample solution :

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Removes all child nodes from all paragraphs.</title>
</head>
<body>
<p>jQuery <b>Exercises</b>.</p>
<p>JavaScript exercises</p>
<button>Click to removes all child nodes of above paragraphs</button>
</body>
</html>

JavaScript Code :

$( "button" ).click(function() {
$( "p" ).empty();
});

See the Pen jquery-fundamental-exercise-82 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Finds every paragraph element.
Next: Finds all elements that are empty.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/jquery-exercises/2/jquery-fundamental-exercise-82.php