Reputation: 4195
I am trying to reload page. But getting prompt message.
location.reload();
$window.location.reload();
Is there a way to reload page without prompting a message?
Upvotes: 2
Views: 4929
Reputation: 337
In Jquery simply use -
$(selector).click(function(e) {
e.preventDefault();
$(window).off('beforeunload');
window.location.reload()
});
Upvotes: 0
Reputation: 41
try using window.onbeforeunload = null;
before window.location.reload()
.
Upvotes: 4