Show texts when mouseup and mousedown event triggering. : Event Mouse « jQuery « JavaScript DHTML






Show texts when mouseup and mousedown event triggering.

  


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("p").mouseup(function(){
              $(this).append('<span style="color:#F00;">Mouse up.</span>');
            }).mousedown(function(){
              $(this).append('<span style="color:#00F;">Mouse down.</span>');
            });



        });
    </script>
<style>

  div.dbl { background:yellow;color:black; }
  
</style>
  </head>
  <body>
    <body>
         <p>Press mouse and release here.</p>
    </body>
</html>

   
    
  








Related examples in the same category

1.Mouse enter event
2.Mouse leave event
3.Mouse down event
4.Mouse enter
5.Cascaded Mouse leave event
6.Mouse out event
7.Mouse over event
8.Mouse over action
9.Mouse up event
10.mouseover event triggering
11.mouseenter event triggering
12.mouseleave event triggering
13.mouseout(fn) event fires when mouse is moved away from an element.
14.mousemove(fn) event fires when mouse is moved
15.mousedown(fn) event fires when the pointing device button is pressed over an element.
16.Show the mouse coordinates when the mouse is moved over the yellow div. Coordinates are relative to the window which in this case is the iframe.
17.Bounced menu