Answers for "button refreshes page on click"

10

refresh button html

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

how to refresh page on click of button

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


<script>
function refreshPage(){
    window.location.reload();
} 
</script>
Posted by: Guest on January-08-2021
1

reload pageon button click

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

autoclick button if refresh page html

window.onload=function(){
  document.getElementById("linkid").click();
};
Posted by: Guest on October-30-2020

Code answers related to "button refreshes page on click"

Browse Popular Code Answers by Language