Bind more than one event actions : bind « jQuery « JavaScript DHTML






Bind more than one event actions

  

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("h1").bind("mouseenter mouseleave", function(e){
                 var str = "( " + e.pageX + ", " + e.pageY + " )";
                 $("h1").text("Click happened! " + str);
             });




        });
    </script>


  </head>
  <body>
    <body>
       <div><h1>header 1</h1></div>
    </body>
</html>

   
    
  








Related examples in the same category

1.Bind click event to header
2.bind(type, data, fn)
3.bind "dblclick"
4.bind "mouseenter mouseleave"
5.To cancel a default action and prevent it from bubbling up, return false: