Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
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.