matfish Posted June 1, 2010 Share Posted June 1, 2010 Hi, Long story but I have a client of which they want a site built on one server and pulled in through a dreaded iFrame. Along with that, obviously this then works as two sites. One viewed from the iFrame and one viewed directly on the server it's hosted. Is there a way to determine if your in the iFrame or on the server? For example, if they are viewing via the iFrame then leave things as they are, however if they are viewing on the server-part without the iFrame then display:block (css) the header? Many thanks Link to comment https://forums.phpfreaks.com/topic/203519-iframe-and-server-detection/ Share on other sites More sharing options...
gwolgamott Posted June 2, 2010 Share Posted June 2, 2010 what exactly is the issue you are having? Code would help if you've got something. Link to comment https://forums.phpfreaks.com/topic/203519-iframe-and-server-detection/#findComment-1066606 Share on other sites More sharing options...
katierosy Posted June 2, 2010 Share Posted June 2, 2010 Please see how to detect iframe using javascript here - http://www.actionscript-flash-guru.com/blog/27-detecting-an-iframe-with-javascript Then you may just work on display block after checking if iframe exist in a page. Link to comment https://forums.phpfreaks.com/topic/203519-iframe-and-server-detection/#findComment-1066653 Share on other sites More sharing options...
lostnucleus Posted June 2, 2010 Share Posted June 2, 2010 function check() { if (window.top!=window.self) { document.write("<p>This window is not the topmost window! Am I in a frame?</p>") } else { document.write("<p>This window is the topmost window!</p>") } } Link to comment https://forums.phpfreaks.com/topic/203519-iframe-and-server-detection/#findComment-1066709 Share on other sites More sharing options...
matfish Posted June 24, 2010 Author Share Posted June 24, 2010 Sorry for late reply, this works just as needed thank you. Link to comment https://forums.phpfreaks.com/topic/203519-iframe-and-server-detection/#findComment-1076530 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.