How can you automatically download a file (jpeg) to a persons computer visiting my webpage without the msgbox popping up asking the user if he/she wants to download the particular file?
Printable View
How can you automatically download a file (jpeg) to a persons computer visiting my webpage without the msgbox popping up asking the user if he/she wants to download the particular file?
This will cache an image ahead of time:
Code:<script language="javascript" type="text/javascript">
<!--
phone = new Image
phone.src = "images/phone.gif"
// -->
</script>
Why would you want to do that?