Nagarjuna Reddy
Nagarjuna Reddy

Reputation: 4195

Reload a page without prompt message

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

Answers (3)

Shekhar Patil
Shekhar Patil

Reputation: 337

In Jquery simply use -

  $(selector).click(function(e) {
    e.preventDefault();
    $(window).off('beforeunload');
    window.location.reload()
  });

Upvotes: 0

Reinaldo Stephens
Reinaldo Stephens

Reputation: 41

try using window.onbeforeunload = null; before window.location.reload().

Upvotes: 4

Jinal Mehta
Jinal Mehta

Reputation: 171

You can use window.location = window.location.href;

Upvotes: 2

Related Questions