w3resource

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.



Follow us on Facebook and Twitter for latest update.