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






<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>








30.20.bind
30.20.1.Bind click event to header
30.20.2.Bind more than one event actions
30.20.3.bind(type, data, fn)
30.20.4.bind "dblclick"
30.20.5.bind "mouseenter mouseleave"
30.20.6.To cancel a default action and prevent it from bubbling up, return false: