XMLHttpRequest to open PDF in browser

19,876
  1. It is not possible to do via XMLHttpRequest if the URL you are querying actually returns the PDF data.

    Why? Because the response is an HTTP response which contains raw PDF data. There is no JavaScript ability to replace the current document's DOM contents with a rendering of a PDF contained in that data, even though you DO have access to the data via responseText` attribute (also see http://www.w3.org/TR/XMLHttpRequest/#the-responsetext-attribute).

  2. What you CAN do is to generate a PDF file into a temporary file accessible via a URL from your web server, and then have the script send back the URL for accessing that file.

    When your response handler processes the URL, it can either:

    • Re-load the current page by changing window.location.href = new_pdf_url

    • Load it in an <iframe> inside the current document by changing iframe's src attribute

    • Open it in a separate window by window.open(new_pdf_url, XXX)

      Please note that you STILL need a URL to a temp file location to open a new window

Share:
19,876
user583311
Author by

user583311

Updated on June 07, 2022

Comments

  • user583311
    user583311 almost 2 years

    I want to do XMLHttpRequest and then open a PDF in the Browser by sending the filename by POST method.

       xmlhttp.open("POST","pdf.php",true); //CHANGE
       xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
       xmlhttp.send("file="+input);
    

    Is that possible or XMLHttpRequest is just for HTML?

  • user583311
    user583311 over 13 years
    I don't want to reveal the location of the PDF's at dropbox. I have a pdf.php that receives POST value and shows the PDF. I just need to find a wait to send the POST to pdf.php by javacript.
  • user583311
    user583311 over 13 years
    But can I open it in a new window?
  • DVK
    DVK over 13 years
    @user583311 - You can only open a new window if you have the URL pointing to a temp PDF file. Basically, there's no native JavaScript mechanism to generate a "DOM document" out of a non-HTML content. Your browser MAY have a plug-in to render that content, but you can't force that plugin to render unless the browser's document is (re-)loaded from scratch. Why don't you simply do window.open('pdf.php?file='+input, XXX) ?