Showing posts with label Reload (Refresh) Page Using Jquery. Show all posts
Showing posts with label Reload (Refresh) Page Using Jquery. Show all posts

Tuesday 11 August 2015

Refresh a page using jQuery


Refresh a page using jQuery

To refresh or reload a page using jQuery, you can use below code

$('#yourId').click(function() {
 location.reload();
});