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.
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-81.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics