Answers for "how to make a reload button in html"

10

refresh button html

<button onClick="window.location.reload();">Refresh Page</button>
Posted by: Guest on June-04-2020
1

reload pageon button click

<button type="button" onClick="window.location.reload();">Close</button>
Posted by: Guest on March-19-2020
1

html reload button

<button onclick="location.reload();">Reload this page</button>
Posted by: Guest on June-20-2021
0

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);
Posted by: Guest on June-05-2020
0

refresh button html

<button onClick="window.location.href=window.location.href">Refresh Page</button>
Posted by: Guest on May-22-2021

Code answers related to "how to make a reload button in html"

Browse Popular Code Answers by Language