Handle unload event

Description

The following code shows how to handle unload event.

Example


<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() {<!-- w  w  w  . ja  v a  2  s  .c  o m-->
    $(window).unload(function() {
      alert("Bye now! java2s.com");
    });
  });
</script>
</head>
<body>
  <form action="javascript:alert('success!');">
    <div>
      <input type="text" /> <input type="submit" />
    </div>
  </form>
  <div></div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities