Answers for "how to stop reloading the page in javascript"

87

refresh page javascript

window.location.reload();
Posted by: Guest on April-05-2020
6

prevent reload javascript

window.onbeforeunload = function() {
  return "Dude, are you sure you want to leave? Think of the kittens!";
}
Posted by: Guest on March-04-2020
-1

how to reload window in javascript

window.location.reload();
Posted by: Guest on August-04-2021

Code answers related to "how to stop reloading the page in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language