Answers for "javascript iframe redirect destination url"

0

iframe url redirect

$(function() {
    if ('app' !== $('body').attr('id')){
        window.setTimeout(function(){
            window.top.location.href = 'your redirect url'; 
        }, 5000);
    }
});
Posted by: Guest on June-01-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language