Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
JS Secrets: Anti - Framebuster 2
SUBMITTED BY:
Guest
DATE:
Dec. 29, 2013, 4:21 a.m.
FORMAT:
Text only
SIZE:
386 Bytes
Raw
Download
Tweet
HITS:
1581
Go to comments
Report
//This is an Anti Framebreaker / Framebuster Script
//It prevents framed sites in your page from breaking out of the frame
var framekiller = true;
window.onbeforeunload = function() {
if(framekiller) {
return "Leave this Website?"; // any message that helps user to make decision
}
};
window.onload = function() {
framekiller = false;
};
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus