Hi All,
Sorry about the wording for my question title.
I have a basic HTML anchor tag that when clicked it is suppose to bring up a dialog box to download a file from a differnt website.
I am using an attribute of target="_blank"
so that when my hyperlink is clicked, I don't navigate away from my main window.
This is all the easy part (if it was so easy I wouldnt be here though).
When I do the above though, and click on the hyperlink, an annoying blank window pops up with my download dialog box behind it.
How do I get rid of that annoying blank window and keep only my download dialog box on the screen?
Below is the HTML I'm working with...
<a href="http://www.fake-domain-name.com/downloads/setup.msi"
target="_blank">
<img src="images/download.png" alt="download file"/>
</a>