hello, i want if someone click on download button on my site, it will not link visitors directly to the download site, but first it will open a little popup and in this popup it will say again ' Download' and if they click on download in this popup they will be linked to the download site so: <a href="www.download.com/fgfg.rar">Download</a> Code (markup): the idea: to put a little ad in the popup
i said i want :there must be open a little popup saying again download, if you click in that popup on download it will redirect you to www.download.com/fgfg.rar thnx for ur reply anyway
Dont make him pay for something so easy. Try this <A HREF="www.download.com/fgfg.rar" onCLick="return confirm('Are you SURE you want to download this file?')">Download</A>
dkin69 thnx very much for your help but i wanted a real popup, like it will call a popup.html and with the download link in it again i want to do this to put a ad in it
You want them to click on link to ANOTHER page, where it has download link? All you have to do is make another page (popup.html , or whatever) and put a link to the actual file. Then where the user will click FIRST on the FIRST page, link that to: popup.html (which will include file link on this page) (This link will of course open a popup window) Same code provided by theartofennui, except a small tweak: <a href="www.download.com/popup.html" target="_blank">Download</a> HTML:
nono if i put <a href="www.download.com/fgfg.rar" target="_blank">Download</a> it must automatic put www.download.com/fgfg.rar in a popup.html and call that popup.html so you can gt the link in that popup
Oh, that changes everything. I assume you'll need that done for many files, If you want it done automatically, i suppose you need a script or something. Can't help yah there.