In my App I need render a dynamic pdf. I have an ajax function that call a php function that return a pdf (string format).

Now I render this pdf using data-uri in this way:

window.open('data:application/pdf;base64, ' + response);

...but this works only on chrome. How can I get that also on firefox?

link|improve this question

50% accept rate
feedback

1 Answer

Hmm how about having your PHP create a temporary local file on the server, and opening that one in your window.open()?

Base64 if very verbose and I am sure you'd get better performance out of just loading it directly from the server (where it actually gets created). Same number of requests, better performance, what could you ask more? ;-)

link|improve this answer
I don't create physical file, for this reason I need render the pdf with javascript. – keepyourweb Nov 29 '11 at 13:50
is the file created on the server side? You could still directly stream to the output without actually saving it anywhere - last example. Hope this helps – Leon Nov 30 '11 at 8:41
feedback

Your Answer

 
or
required, but never shown

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