js refresh code example
Example 1: refresh window js
window.location.reload();
Example 2: javascript reload page
location.reload();
Example 3: refresh page js
//with no cache
document.location.reload(true);
//else
document.location.reload();
Example 4: refresh javascript
location.reload();
Works like refresh button.
Example 5: refresh page js
window.location.reload(true);
Example 6: what is location reload
The Location.reload() method reloads the current URL, like the Refresh button.
may be blocked and a SECURITY_ERROR DOMException thrown if
the origin of the calling script differs from
the origin of the page that owns the Location object.