17

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

3
  • 1
    Can you clearly state what you wanna do? Commented Jun 15, 2009 at 15:07
  • 4
    <img src="a.gif" style="display:none"> Commented Jun 15, 2009 at 15:11
  • I got the answer , Billy Could you please edit it to understandable Commented Jun 15, 2009 at 15:13

5 Answers 5

60

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" />
Sign up to request clarification or add additional context in comments.

2 Comments

what if i want to show the image? should it be .style.display = true; ?
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... css-tricks.com/almanac/properties/d/display
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.

Comments

4

How about

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

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

Comments

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

Comments

2

Try setting the style to display=none:

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.