Javascript examples for Browser Object Model:Window Load
Refresh (reload) a page once using jQuery
<html> <head> <title>Reload (Refresh) Page Using Jquery</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $('#reload').click(function() { window.location.reload(); });//from www . j a v a2 s . c o m }); </script> </head> <body> <button id="reload">Reload (Refresh) Page Using</button> </body> </html>