document.reload js code example
Example 1: refresh page js
//with no cache
document.location.reload(true);
//else
document.location.reload();
Example 2: script refresh js
window.location.href = window.location.pathname + window.location.search + window.location.hash;