Handle mouseenter event

Description

The following code shows how to bind mouse enter/leave event to handler.

Example


<!--from w  w w . java 2 s.  c  o m-->
<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.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>
  <div>
    <h1>header 1</h1>
  </div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities