PDF not displaying in modal

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

  1. $("#pdf").dialog({                         
  2.    autoOpen: false,                           
  3.    modal: true,                               
  4.    async: false,                              
  5.    height: "auto",                            
  6.    width: "auto",                             
  7.    buttons: {                                 
  8.        Close: function() {                    
  9.         $(this).dialog("close");              
  10.        }                                      
  11.      }                                        
  12.    });                                        
  13.    $("#pdf").dialog("open");               

  1. <div id="pdf" title="Data Listing" style="display:none">   
  2. <img id="pdfsrc" src="/tmp/pdftest.pdf"> 
  3. </div>