Showing posts with label How can I refresh a page with jQuery?. Show all posts
Showing posts with label How can I refresh a page with 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();
});