w3resource

jQuery: Finds every paragraph element

jQuery Fundamental - II : Exercise-81

Finds every paragraph element.

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>Finds every paragraph element</title>
</head>
<body>
<p>Paragraph1</p>
<p>Paragraph1</p>
<div>Division1</div>
</body>
</html>

JavaScript Code :

$( "p" ).css( "border", "2px solid red" );

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


Contribute your code and comments through Disqus.

Previous: Iterate over three paragraphs and sets their color property red.
Next: Removes all child nodes from all paragraphs.

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.