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.



Follow us on Facebook and Twitter for latest update.