Vish
Vish

Reputation: 4492

Iframe breaking script

How can create an iframe breaking script which shows a alert box if the page is loaded in an iframe and when the alert box is clicked, it should break the frame and the script should be seen.

Upvotes: 0

Views: 219

Answers (1)

rodneyrehm
rodneyrehm

Reputation: 13557

if (top != window) {
  alert("please don't load my in a frame, thx.");
  top.location.href = location.href;
}

might do the trick.

Upvotes: 1

Related Questions