Skip to content

Instantly share code, notes, and snippets.

@ianoxley
Created July 28, 2010 11:30
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 ianoxley/494139 to your computer and use it in GitHub Desktop.
Save ianoxley/494139 to your computer and use it in GitHub Desktop.
A JavaScript snippet for framebusting
if (self != top) {
document.documentElement.style.visibility = 'hidden';
top.location = self.location;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment