Skip to content

Instantly share code, notes, and snippets.

@klongdesigns
Created April 27, 2014 04:59
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 klongdesigns/11337905 to your computer and use it in GitHub Desktop.
Save klongdesigns/11337905 to your computer and use it in GitHub Desktop.
/* iFrame Buster */
<script language="javascript" type="text/javascript">
//if (window!= top) top.location.href = location.href;
(function(window) {
if (window.location !== window.top.location) {
window.top.location = window.location;
}
})(this);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment