Click to See Complete Forum and Search --> : Load a pdf doc?


chadorbaf
04-15-2003, 12:33 PM
Hi,
I'd like to load an pdf document (by adobe) via a link on my page. The pdf should be loaded in another browser ( so, i should use window.open(.....) ). Any idea how could i do this?

Thanks.

dmason165
04-15-2003, 02:59 PM
chadorbaf,

I'm not sure if you'd like to use JavaScript or not. I say this because you can use regular old html for this one. Your code would look something like this:

<a href="documentname.pdf" target="_blank">Document Link Here</a>

I'm pretty sure this is right...if I understand what you're looking for. Post again if you need anymore help.

~Darron

chadorbaf
04-16-2003, 12:52 PM
That's all i wantted. Works perfect. Tons of thanks.