Reputation: 11042
I have a couple of custom tabs I have developed for a Facebook page and I want to link one to another.
I use target="_blank"
in the link attributes it works perfectly, however I want the link to open in the same window so if I remove the target attribute I get a blank screen in Firefox and nothing happens at all in Chrome.
However, if I shift+click in Chrome it again works perfectly.
<p><a href="http://www.facebook.com/pages/PAGE_NAME/PAGE_ID?v=app_APP_ID" title="blah"><img src="../images/frame1b.jpg" alt="blah" style="border: 0 none;" /></a></p>
Upvotes: 0
Views: 921
Reputation: 9912
Use target="_parent"
that should open it in the same browser tab.
Upvotes: 1