Hello, > > For an image you can use <img src=picture.png title="picture.png"> to > > get the filename showing up when placing the mouse cursor over the > > picture. > > Erhm, that would be the alt="" attribute :) > > <img src="../name.png" alt="Alternate text"> > > The title method is preferable and more compatible with all browsers: > http://www.cs.tut.fi/~jkorpela/html/alt.html#tooltip
This is true. "alt" works only in Microwave Exploder, but "Title" works similar in all Browsers IE, Firefox, Konqueror, Opera. In HTML4, XHTML and maybe others is "alt" tag required. It is useful in text Browsers (Links, Lynx) or in speech browsers for Blind men. Right method is to use both "alt" for alternate text AND "title" for POPUP. HTML4 example: <img src="mem.png" alt="Memory graph" title="Memory"> Best regards, Pavel Ruzicka -- Unsubscribe mailto:[EMAIL PROTECTED] Help mailto:[EMAIL PROTECTED] Archive http://lists.ee.ethz.ch/rrd-users WebAdmin http://lists.ee.ethz.ch/lsg2.cgi
