Frameset killer

This little code snippet will ensure that your website won't display in a frameset. <br/> Your site will jump out of the frameset.
1
2
3
4
5
if(top.location != location) {
    top.location.href = document.location.href;
}
X

Url: http://www.jonasjohn.de/snippets/javascript/frameset-killer.htm

Language: JavaScript | User: ShareMySnippets | Created: Oct 16, 2013