Skip to content

Instantly share code, notes, and snippets.

@tristanm
Created October 30, 2012 02:11
Show Gist options
  • Save tristanm/3977908 to your computer and use it in GitHub Desktop.
Save tristanm/3977908 to your computer and use it in GitHub Desktop.
Always break out of an iframe
if (window.self !== window.top) {
window.top.location.href = window.self.location.href;
}
@faceleg
Copy link

faceleg commented Oct 30, 2012

Breakout!?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment