Answers for "refresh on button 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

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 "refresh on button click"

Browse Popular Code Answers by Language