Answers for "iframe redirects to another page"

0

iframe redirects to another page

<iframe src="url" sandbox="allow-forms allow-scripts"></iframe>
Posted by: Guest on September-28-2021
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 "iframe redirects to another page"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language