show/hide this revision's text 3 deleted 100 characters in body; deleted 57 characters in body

After pondering this for a little while, I believe this will show them whose boss...

if(top != self) {
  alert('Don\'t you dare frame into my web site!');
  window.open(location.href, '_top');
}

Or if I was

Using "_top" as the target parameter for window.open will launch it in a ruthless mood, I'd give 'em a blistering loop..the same window.

if (top != self) {
  while(true) {
    alert('Don\'t you dare frame into my web site!');
  }
}

show/hide this revision's text 2 added 22 characters in body

I'd either torture them..

After pondering this for a little while, I believe this will show them whose boss...

if (top 

if(top != self) {
  while(true) {
    alert('Don\'t you dare frame into my web site!');
  }
window.open(location.href, '_top');
}

Or launch if I was in a new window..ruthless mood, I'd give 'em a blistering loop...

if(top 

if (top != self) {
  document.body.style.display = 'none';
  alert('How dare while(true) {
    alert('Don\'t you dare frame into my web site!');
  var w = window.open(location.href, 'mySite');
  w.focus();
  }
}
show/hide this revision's text 1

I'd either torture them...

if (top != self) {
  while(true) {
    alert('Don\'t you dare frame into my web site!');
  }
}

Or launch a new window...

if(top != self) {
  document.body.style.display = 'none';
  alert('How dare you frame into my web site!');
  var w = window.open(location.href, 'mySite');
  w.focus();
}