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?