FEATURE – delay redirect with jQuery

    [javascript]
    function delayer(){
    window.location = "https://snipt.net/davaskDot42/";
    } // END FUNC
    jQuery(document).ready(function(){
    setTimeout(‘delayer()’, 10000);
    });
    [/javascript]

    Leave a Reply