Quantcast
Channel: All your code are belong to us
Viewing all articles
Browse latest Browse all 43

Check if a page is loaded in an iframe

$
0
0

Just a quick tip, how to check if current page has been loaded in an iframe or was it accessed directly.

if (window.self === window.top) { // we're NOT in an iframe } else { // we're in an iframe }

That’s it.


Viewing all articles
Browse latest Browse all 43

Trending Articles