aharrisreid
Programmer
I would like to have an image, which when clicked-on produces the standard IE 'Save as' dialog.
The following code works, but when the pointer hovers over the image I want the 'pointing finger' to appear. I think this may need the addition href="", but how? A blank href wants to display the parent folder! Can I get the finger with out using <a></a> ?
<a>
<img src="MyImage.gif"
onclick=document.execCommand('SaveAs',true,'MyFile.txt')>
</a>
Any help would be appreciated.
Alan