NancyLebovitz comments on Rationality Quotes September 2013 - Less Wrong

5 Post author: Vaniver 04 September 2013 05:02AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (456)

You are viewing a single comment's thread. Show more comments above.

Comment author: NancyLebovitz 13 September 2013 12:43:20PM 0 points [-]

What's the difference between a mouseover and an alt text?

Comment author: tut 13 September 2013 02:50:40PM *  0 points [-]

Mouseover is javascript EDIT: or CSS and shows up when you hover your pointer over some trigger area. Alt text is plain HTML and shows up when the image (or whatever it is alt text for) doesn't load.

Comment author: NancyLebovitz 13 September 2013 05:06:25PM 5 points [-]

How do you get alt text to appear if the image loads? Read source?

Comment author: linkhyrule5 13 September 2013 06:54:41PM 2 points [-]

Yup.

Comment author: Dreaded_Anomaly 13 September 2013 04:15:04PM 2 points [-]

There's also title text (often called a tool tip) which appears when you hover the mouse over an image, but is a plain HTML feature.

Comment author: David_Gerard 13 September 2013 07:51:27PM 2 points [-]

No, mouseover is TITLE= and alt text ls ALT=. Mouseover doesn't rely on Javascript. Alt text is specifically for putting in place of an image; it used to be used for mouseovers as well, but then TITLE= came in for that.

Comment author: wedrifid 14 September 2013 09:50:00AM 1 point [-]

Mouseover is javascript and shows up when you hover your pointer over some trigger area.

Javascript is not actually required. CSS handles it.