I have a Facebook iFrame application; I'd like links in my application to point within my website, so that users can changes pages without having to reload the entire Facebook chrome each time. However, this raises two issues:
- If a user opens a link in a new tab, that tab won't have the surrounding Facebook chrome, giving them no way to get back to Facebook.
- If they press reload, it will reload the outer frame, bringing them back to the first page they navigated to in my application, rather than the one they were currently at.
Frame-busting fixes the first issue but not the second. What I'd like to do is detect whether links are opened in a new tab (/ window) or the current tab (/ window), and then do this:
- User clicks on link to
example.com/address - If opened in current tab Open
example.com/addressin the iframe (ideally by AJAX loading it), and use Javascript to change the document fragment of the parent frame to#!/myappname/address. - If opened in new tab Open
apps.facebook.com/myappname/addressin the new tab instead.
The document fragment changing is done to solve the reload problem; aside from performance reasons, the AJAX loading is done in order to keep track of the parent frame's base URL (which is necessary in order to set the document fragment correctly: we can't read the parent frame's URL due to cross-domain restrictions, but we can figure it out when our iframe is initially loaded).
Is there any way to achieve this in HTML+Javascript?
(Before it's suggested, I have considered binding an onclick event to every link, and checking if the Ctrl / Cmd key is pressed down; however, this doesn't account for other ways of opening new tabs, e.g. middle-clicking, pressing the Enter key when the link is active, or right-clicking and selecting "Open in New Tab").