jQuery: Display a message to the dblclick event on all paragraphs on a page
jQuery Fundamental - II : Exercise-71
Display a message to the dblclick event on all paragraphs on a page.
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>Display a message to the dblclick event on all paragraphs on a page</title>
</head>
<body>
<p>jQuery Exercises</p>
<p>JavaScript Exercises</p>
</body>
</html>
JavaScript Code :
$( "p" ).dblclick(function() {
alert( "Hello World!" );
});
See the Pen jquery-fundamental-exercise-71 by w3resource (@w3resource) on CodePen.
Contribute your code and comments through Disqus.
Previous: Retrieve the stored value from the division element.
Next: Double click to toggle background color of a paragraph.
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-71.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics