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 fairly new to jquery mobile, and am getting an error when trying to link a file in my jquery mobile project for download. I would like a user to be able to download a .zip file from the app, but get either a page loading error, or undefined displayed in a new page. I tried using an anchor tag to link the file to download, but it doesn't seem to work right. I know jquery mobile makes use of the anchor tag, so I don't know if there is something special that needs to be done. Any help?

share|improve this question
Welcome to StackOverflow! Can you provide the code you're working with and what exactly isn't working with that code? – Andrew Whitaker Dec 11 '12 at 0:06

1 Answer

You are likely getting the exception when jQuery Mobile assumes the link is a page and attempts an AJAX page load. Disable AJAX loading on the link.

<a href="yourfile.zip" data-ajax="false">Link</a>

And I have no idea what the typical mobile browser will do with a link to zip file.

share|improve this answer
It worked thanks! Do you know if there is a better method than to zip files for download on mobile devices? – user1890525 Dec 10 '12 at 21:02
1  
Not sure. Consider marking the answer correct... – andleer Dec 11 '12 at 0:27

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.