I want to make available an xpages app available via ibm connections and since they both share the same titlebar header I want to hide the one in the xpages app when it resides in an iframe.
I have read that all JavaScript functions are blocked when embedded in the Connections IFrame widget so something simple like:
if (window.frameElement) {
//window resides in an iframe...
$( "#titlebar").hide();
}
does not work.
Is there another to check if my xpages application resides in an iframe? (ssjs?)