Skip to content

Instantly share code, notes, and snippets.

@bendman
Created June 4, 2014 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bendman/74f2b5ec66889c5466ce to your computer and use it in GitHub Desktop.
Save bendman/74f2b5ec66889c5466ce to your computer and use it in GitHub Desktop.
Check if the current frame has access to the top frame
var crossDomain = (function(){
var top = null;
try {
top = window.top.location.host;
} catch(err) {}
return (top === null);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment