southbeach
Programmer
I am trying to render a page where user views a TIF document online. I have tried everything I can think of but the most I get is an attempt to download the document.
I want to simply display the TIF document like you would a JPG or PDF - In other words, open it on the browser itself.
I have tried JS code like
I have tried img tag
I have even tried using iframe tag
JS gives me the option to download the document and the other two options do nothing ...
Is there a solution to this?
Thank you all in advance for your assistance!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.
I want to simply display the TIF document like you would a JPG or PDF - In other words, open it on the browser itself.
I have tried JS code like
Code:
window.open('mytifdoc.tif');
Code:
<img src="mytifdoc.tif' />
Code:
<iframe src='mytifdoc.tif'></iframe>
JS gives me the option to download the document and the other two options do nothing ...
Is there a solution to this?
Thank you all in advance for your assistance!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.