Click to See Complete Forum and Search --> : Simple Question...New Window?


petrocan
05-02-2003, 09:41 AM
Stupid simple question I hope...but how do I generate a new window everytime a link on the original page is clicked. Currently when a new link is clicked it takes over the other new window that was openned.

Here is what I'm using so far:

target="popup" onClick="window.open('PDF/PhoneListing.pdf', 'popup')"

Any help would be greatly appreciated.

gil davis
05-02-2003, 09:51 AM
Leave out the target name.
onClick="window.open('PDF/PhoneListing.pdf');return false"

petrocan
05-02-2003, 10:35 AM
Thank you so much that worked...thanks for your help gil!!!