1

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?

Nagarjuna Reddy
  • 3,755
  • 13
  • 40
  • 76

2 Answers2

3

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

2

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

Jinal Mehta
  • 171
  • 6