Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

The "alt tag" never appears for the pictures!!!??

  • 2 replies
  • 7 have this problem
  • 15 views
  • Last reply by mazioon

more options

I am a web-designer, and whenever i trying to use the alt tag for the pictures it never appears. The "alt tag" is a part of the HTML language, and the one writes it to make sure that the visitor of the site will see or understand the content of the pics, even if he has a very bad connection. like so: Every thing goes right with the width or the height, but when it comes with the "alt" it never appears. I tried it on IE and Opera, and it works. Plz if you know how can i solve this problem send me to der.dolmetscher@yahoo.com IT'S URGENT alt tag doesn't work http://www.w3schools.com/html/tryit.asp?filename=tryhtml_images2 I attached a link for "W3SCHOOL" put ur cursor over any pic and you'll find no writing

'''I am a web-designer''', and whenever i trying to use the '''alt tag''' for the pictures it never appears. ''The "alt tag" is a part of the HTML language'', and the one writes it to make sure that the visitor of the site will see or understand the content of the pics, even if he has a very bad connection. like so: <img src="'''the image'''" alt="'''the name or the theme of the pic'' /> Every thing goes right with the width or the height, but when it comes with the "alt" it never appears. I tried it on IE and Opera, and it works. Plz if you know how can i solve this problem send me to der.dolmetscher@yahoo.com IT'S URGENT [http://the alt tag doesn't work http://www.w3schools.com/html/tryit.asp?filename=tryhtml_images2] '''''I attached a link for "W3SCHOOL" put ur cursor over any pic and you'll find no writing'''''

Chosen solution

Alt is not for tooltips, that is misbehavior from Internet Explorer. To show a tooltip you must use the title attribute. In fact, in order to create a truly web standards compliant webpages, you must specify both. Alt is shown if there is no image available, title is for the tooltip.
See https://developer.mozilla.org/en/Mozilla_Web_Developer_FAQ

USE: alt="Google Chrome" width="33" height="32" title="my tooltip"
Read this answer in context 👍 1

All Replies (2)

more options

Chosen Solution

Alt is not for tooltips, that is misbehavior from Internet Explorer. To show a tooltip you must use the title attribute. In fact, in order to create a truly web standards compliant webpages, you must specify both. Alt is shown if there is no image available, title is for the tooltip.
See https://developer.mozilla.org/en/Mozilla_Web_Developer_FAQ

USE: alt="Google Chrome" width="33" height="32" title="my tooltip"
more options

Thanksss it helped alot!!!