Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q763 How can I force an image to be downloaded but not displayed in the browser window?

You are here: irt.org | FAQ | JavaScript | Image | Q763 [ previous next ]

Try:

<IMG SRC="picture.gif" WIDTH="1" HEIGHT="1">

or:

<SCRIPT LANGUAGE="JavaScript"><!--
if (document.images)
    myImage = new Image();
    myImage.src = 'picture.gif';
//--></SCRIPT>

Feedback on 'Q763 How can I force an image to be downloaded but not displayed in the browser window?'

©2018 Martin Webb