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
Check if window.frameElement is not null and see if its nodeName property is "IFRAME":
window.frameElement
var isInIframe = window.frameElement && window.frameElement.nodeName == "IFRAME";