Refresh page using jQuery
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $('#refresh').click(function() { history.go(0); }); }); </script> </head> <body> <h4 ><a href="javascript:void(0);" id="refresh">Click to refresh </a></h4> </body> </html>
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $('#refresh').click(function() { history.go(0); }); }); </script> </head> <body> <h4 ><a href="javascript:void(0);" id="refresh">Click to refresh </a></h4> </body> </html>
Copyrights@tutorialsplane.com