How can I tell from a page within an iframe, if the parent itself is also within an iframe?
Explanation:
My home page home.ht
home.ht
var isInIFrame = (window.location != window.parent.location); if(isInIFrame==true){ // iframe } else { // no iframe }