16

How can you make a simple tag like <img src="a.gif"> hidden programmatically using JavaScript?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
joe
  • 34,529
  • 29
  • 100
  • 137

5 Answers5

58

I'm not sure I understand your question. But there are two approaches to making the image invisible...

Pure HTML

<img src="a.gif" style="display: none;" />

Or...

HTML + Javascript

<script type="text/javascript">
document.getElementById("myImage").style.display = "none";
</script>

<img id="myImage" src="a.gif" />
Steve Wortham
  • 21,740
  • 5
  • 68
  • 90
5

You can hide an image using javascript like this:

document.images['imageName'].style.visibility = hidden;

If that isn't what you are after, you need to explain yourself more clearly.

Simon P Stevens
  • 27,303
  • 5
  • 81
  • 107
3

How about

<img style="display: none;" src="a.gif">

That will disable the display completely, and not leave a placeholder

Brian Agnew
  • 268,207
  • 37
  • 334
  • 440
3

This question is vague, but if you want to make the image with Javascript. It is simple.

function loadImages(src) {
  if (document.images) {
    img1 = new Image();
    img1.src = src;
}
loadImages("image.jpg");

The image will be requested but until you show it it will never be displayed. great for pre loading images you expect to be requests but delaying it until the document is loaded.

Example

Andy Brown
  • 18,961
  • 3
  • 52
  • 62
BigBlondeViking
  • 3,853
  • 1
  • 32
  • 28
2

Try setting the style to display=none:

<img src="a.gif" style="display:none">
karim79
  • 339,989
  • 67
  • 413
  • 406