Coding Cookbook/Escape from encapsulation
Appearance
JavaScript solution
[edit | edit source]Escape from frame encapsulation
if (top != self) {
top.location.replace(document.location.href);
};
Escape from frame encapsulation
if (top != self) {
top.location.replace(document.location.href);
};