location.reload() is a method in JavaScript that reloads the current URL, like when you hit the refresh button on your browser. This can be useful if you want to force the browser to reload the page regardless of whether the content has changed or not.
<script>
function reloadPage(){
location.reload();
}
</script>
<input type="button" onclick="reloadPage()" value="Refresh Page" />
Leave a Reply