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.

I'm using using jQuery mobile. Testing my web page on iPhone.

Here is the issue:

I am on http://www.mywebsite.com/here.html and I have an anchor on that page that points to

href="http://www.mywebsite.com/some/folder/there.html", I'm navigated to

http://www.mywebsite.com/here.html#/some/folder/there.html

If I remove jQuery mobile js file, everything works as expected. So it looks like jQuery mobile is intercepting my 'tap' event and modifies url to the link. Weird. Why is it doing that?

share|improve this question

1 Answer

up vote 2 down vote accepted

Looks like this is done on purpose to help you with animated page transitions and such.

I can turn it off by adding this attribute to the anchor data-ajax="false"

share|improve this answer
Fantastic answer! I was just about to ask the same question until I stumbled upon this answer. Much appreciated! – DarkMantis Oct 10 '11 at 9:54

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.