w3resource

jQuery Events: Show texts when mouseup and mousedown event triggering

jQuery Events : Exercise -23 with Solution

Show texts when mouseup and mousedown event triggering.

Solution:

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>Show texts when mouseup and mousedown event triggering</title>
</head>
<body>
<p>Press mouse and release here.</p>
</body>
</html>

JavaScript Code :

$( "p" )
  .mouseup(function() {
    $( this ).append("Mouse up." );
  })
  .mousedown(function() {
    $( this ).append( "Mouse down" );
  });

Go to:


PREV : Count the number of specific elements.
NEXT : Display the window width while (or after) it is resized.

Live Demo:

See the Pen jquery-events-exercise-23 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

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.