13

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

Brian Tompsett - 汤莱恩
  • 5,438
  • 68
  • 55
  • 126
joe
  • 33,193
  • 29
  • 98
  • 135

5 Answers5

56

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,108
  • 5
  • 65
  • 86
  • display: none; is what I needed. Thank you – Nabin Nov 14 '16 at 10:28
  • what if i want to show the image? should it be .style.display = true; ? – noogui Jul 02 '17 at 15:18
  • To show the image it'd be `.style.display = "inline-block"` which would be the default display behavior of an img. All possible display options are described here... https://css-tricks.com/almanac/properties/d/display/ – Steve Wortham Nov 07 '17 at 18:02
4

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
  • 26,803
  • 4
  • 78
  • 105
3

How about

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

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

Brian Agnew
  • 261,477
  • 36
  • 323
  • 432
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,600
  • 3
  • 50
  • 61
BigBlondeViking
  • 3,793
  • 1
  • 30
  • 28
2

Try setting the style to display=none:

<img src="a.gif" style="display:none">
karim79
  • 334,458
  • 66
  • 409
  • 405