Dynamic AJAX Content - cant load PDFs
1) Script Title: Dynamic Ajax Content
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...jaxcontent.htm
3) Describe problem:
I'm using this AJAX script to load external content into a DIV tag.
The problem is when i want to load PDF files to display in the DIV, all i get is illegible binary code.
So how i can i have the the actual PDF files display instead?
[I was originally using an IFRAME to load all the content, but switched to AJAX to avoid the two sets of scrollbars - one for the actual HTML page and one for the IFRAME.]
HTML Code:
<div id="leftcolumn">
<a href="javascript:ajaxpage('myPage.htm', 'rightcolumn');">HTML content - loads fine</a>
<a href="javascript:ajaxpage('PDFs/ReadMe.pdf', 'rightcolumn');">A PDF file - gobbledigook!</a>
</div>
<div id="rightcolumn">
<h3>PDF files wont render properly here.</h3>
</div>