Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I have 2 application tabs added to a profile page in facebook. I am trying to link back and forth between the two tabs. Facebook mysteriously adds them as anchors

http://www.facebook.com/pages/blahblah/12313123231231?v=app_23423423423#!blahblah/12313123231231?v=app_2342332423423

I don't get it. Looking at the source of Dove's site, my only guess is that they do links via javascript:

http://www.facebook.com/dove?v=app_6009294086#!/dove?v=app_127320750626819

Any thoughts?

Steve

share|improve this question
To confirm your suspicions, yes: Facebook re-writes links so that they can be loaded directly by the browser, and also loaded dynamically by the page (AJAX-style). This often involves putting the destination into both a querystring and a fragment. – Shog9 Apr 24 '11 at 18:08

1 Answer

Aaah, facebook. So I anchored the href and added an onclick with document.setLocation('absoluteurl').

Good times FB, good times.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.