How to check if a page is in an iFrame

Posted by
September 13, 2018

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function inIframe () {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}
function inIframe () { try { return window.self !== window.top; } catch (e) { return true; } }
function inIframe () {
    try {
        return window.self !== window.top;
    } catch (e) {
        return true;
    }
}

 

read more