Select Page
function url_redirect(url){ var X = setTimeout(function(){ window.location.replace(url); return true; },300); if( window.location = url ){ clearTimeout(X); return true; } else { if( window.location.href = url ){ clearTimeout(X); return true; }else{ clearTimeout(X); window.location.replace(url); return true; } } return false; };