Answers for "redirect to a different page using javascript after a given time"

50

javascript redirect to another page

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
13

redirect with javascript

window.location.replace('http://mywebsite.com/home.html');
Posted by: Guest on March-17-2020
0

javascript redirect after some time

<script>
    // Using ES6 feature.
    let redirect_Page = () => {
        let tID = setTimeout(function () {
            window.location.href = "https://www.encodedna.com/javascript/operators/default.htm";
            window.clearTimeout(tID);		// clear time out.
        }, 5000);
    }

    // Using regular methods.
    /* function redirect_Page () {
        var tID = setTimeout(function () {
            window.location.href = "https://www.encodedna.com/javascript/operators/default.htm";
            window.clearTimeout(tID);		// clear time out.
        }, 5000);
    } */
</script>
Posted by: Guest on June-17-2021

Code answers related to "redirect to a different page using javascript after a given time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language