Back
How can I refresh a page with jQuery?
To refresh a page with jQuery you can use location.reload()method below is the code for the same:-
$('#something').click(function() { location.reload(); });
$('#something').click(function() {
location.reload();
});
31k questions
32.8k answers
501 comments
693 users