Skip to content

Instantly share code, notes, and snippets.

@davidmurdoch
Created May 26, 2011 22:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidmurdoch/994220 to your computer and use it in GitHub Desktop.
Save davidmurdoch/994220 to your computer and use it in GitHub Desktop.
Frame buster Buster
(function(){
var preventBust = 0;
window.onbeforeunload = function () {
preventBust++;
};
setInterval(function () {
if (preventBust > 0) {
preventBust -= 2;
window.top.location = "/statuscode/204";
}
}, 1);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment