In case we want to refresh the current page using JavaScript, we can follow this approach.
<script> document.write(new Date()); function TestFunction() { location.reload(); } </script> <input type="button" id="btnReload" value="Reload" onclick="TestFunction()" />
In the above code on click of the button, we are executing “TestFunction” function. Inside this function we are calling the location.reload()
method that reloads the current page.
OUTPUT
Views: 4322 | Post Order: 55