force browser to reload page js code example
Example 1: reload page javascript
window.location.reload();
Example 2: refresh page js
window.location.reload(true);
Example 3: script refresh js
window.location.href = window.location.pathname + window.location.search + window.location.hash;