javascript on twitter to prevent embedding the html page.
- by Reginald
This is the javascript that you can find in www.twitter.com (just click to see the source code)
I have just reformatted it for clarity:
if (window.top !== window.self) {
document.write = "";
window.top.location = window.self.location;
setTimeout(function() {
document.body.innerHTML = '';
}, 1);
window.self.onload = function(evt) {
…