-4

I have a webservice that will respond with a pdf on certain post requests.

I need to be able, in javascript, to download this pdf and embed it on my page. How would I do that?

I don't have a direct URL only the data passed back by the AJAX

user818205
  • 51
  • 1
  • 4
  • 1
    possible duplicate of [Recommended way to embed PDF in HTML?](http://stackoverflow.com/questions/291813/recommended-way-to-embed-pdf-in-html) – JJJ Aug 07 '15 at 14:09

1 Answers1

0

You can try out PDF.js. However, it doesn't support all the browser.

An alternative with IE support is thatyou could just insert a iFrame, and change the src to the location of the PDF.

gerard
  • 174
  • 1
  • 4
  • 17