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 have a web based application and was looking for a way for users to download their data from the websql tables. Someone suggested using data URI which seems to work in all browsers but Internet Explorer. The approach I am taking is to store all data in a variable and using text/csv MIME-Type and charset=UTF-8 character set encoding:

document.location.href = 'data:text/csv;charset=UTF-8,' + encodeURIComponent(info);

However when I click the link in internet explorer 9 it says the page can not be displayed. Any ideas how to get this working in IE? Thanks.

share|improve this question

1 Answer

up vote 4 down vote accepted

IE8 and IE9 only support the data URI for images. Read more about IE's support for the data URI here:

http://msdn.microsoft.com/en-us/library/cc848897(v=vs.85).aspx

EDIT: You could try some kinda flash hack for IE. Pass the data to flash. Use AS3 to initiate a download.

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.