Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Web Technology by (47.6k points)

How can I refresh a page with jQuery?

1 Answer

0 votes
by (106k points)

To refresh a page with jQuery you can use location.reload()method below is the code for the same:-

$('#something').click(function() { 

location.reload(); 

});

Browse Categories

...