[email protected]
Check If Web Page Is In An Iframe
function checkIframe() {
if (window.top != window.self) {
console.log("This webpage has been used in an iframe!");
} else {
console.log("This webpage has not been used in an iframe.");
}
}
function checkIframe() {
if (window.top != window.self) {
console.log("This webpage has been used in an iframe!");
} else {
console.log("This webpage has not been used in an iframe.");
}
}