Window.Open with PDF stream instead of PDF location
It looks like window.open will take a Data URI as the location parameter. So you can open it like this from the question: Opening PDF String in new window with javascript: window.open(“data:application/pdf;base64, ” + base64EncodedPDF); Here’s an runnable example in plunker, and sample pdf file that’s already base64 encoded. Then on the server, you can … Read more