refresh page on click code example

Example 1: how to refresh page on click of button

<button type="button" onClick="refreshPage()">Close</button>


<script>
function refreshPage(){
    window.location.reload();
} 
</script>

Example 2: reload pageon button click

<button type="button" onClick="window.location.reload();">Close</button>

Example 3: javascript button onclick reload page

const reloadtButton = document.querySelector("#reload");
// Reload everything:
function reload() {
    reload = location.reload();
}
// Event listeners for reload
reloadButton.addEventListener("click", reload, false);

Tags:

Misc Example