Answers for "window.location.reload() javascript"

84

refresh window js

window.location.reload();
Posted by: Guest on April-05-2020
2

javascript refresh page

<script type="text/javascript">
    function autoRefreshPage()
    {
        window.location = window.location.href;
    }
    setInterval('autoRefreshPage()', 10000);
</script>
Posted by: Guest on April-20-2021
0

refresh page javascript

location.reload();
// OR
window.location.reload();
Posted by: Guest on July-12-2021

Code answers related to "window.location.reload() javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language