PDF not displaying in modal
man this forum is s...l...o...w...
I have a div that has an image tag with the source of a pdf. Im attempting to display the pdf in a modal screen.
But, it's not displaying. Any suggestions
- $("#pdf").dialog({
- autoOpen: false,
- modal: true,
- async: false,
- height: "auto",
- width: "auto",
- buttons: {
- Close: function() {
- $(this).dialog("close");
- }
- }
- });
- $("#pdf").dialog("open");
- <div id="pdf" title="Data Listing" style="display:none">
- <img id="pdfsrc" src="/tmp/pdftest.pdf">
- </div>