html page refresh on load code example
Example 1: refresh button html
<button onClick="window.location.reload();">Refresh Page</button>
Example 2: meta refresh only once
document.getElementById('iframeID').contentWindow.location.reload();
<button onClick="window.location.reload();">Refresh Page</button>
document.getElementById('iframeID').contentWindow.location.reload();