How can I stop my website from loading in a frame?
As can be seen here: http://yehg.net/lab/pr0js/pentest/cross_site_framing.php
Google.com won't load, msn.com will break out of the frame. AOL.com will load fine. How do I make my website either break out of the frame or load in the whole window?
Break out of frame script can be done if you compare the url of top frame to the current frame url:
These might point you in the right direction... Or google 'break out of iframe'?
Frame Buster Buster ... buster code needed
Detect iFrame embedding in Javascript
How to identify if a webpage is being loaded inside an iframe or directly into the browser window?
This little script snippet should work:
Also, you can prevent your pages from being loaded in an iframe by specifying a
X-Frame-Options: DENY
header. See https://developer.mozilla.org/en-US/docs/The_X-FRAME-OPTIONS_response_header for details.