Answers for "hwo to reload page with jwoury"

4

javascript code to refresh page automatically

window.setTimeout(function () {
  window.location.reload();
}, 30000);
Posted by: Guest on January-09-2022
-1

Function used to reload the portion of a page using javascript

$('#thisdiv').load(document.URL +  '  #thisdiv');

•	Be sure to include a space before the id selector when concatenate.
Posted by: Guest on May-07-2020

Code answers related to "hwo to reload page with jwoury"

Code answers related to "Javascript"

Browse Popular Code Answers by Language