Hai, I have seen something that when mouseover is done on a link/word in a HTML page, an information will be popping up. Can any one post some sample code or link to achieve that. Thanks in Advance.
+1
A:
Here's a list of 10 plugins, which might be interesting:
or - if you want to add tooltips to links - just use the title attribute:
<a href="#" title="Hello, Tooltips">Hello</a>
The MYYN
2010-08-11 08:02:22
A:
Well that depends entirely on what javascript framework you use. For instance in jquery, this plugin tooltip(http://jquery.bassistance.de/tooltip/demo/) makes it trivial to do this.
If you are not using any frameworks then use onMouseover etc. eg
Link
irfn
2010-08-11 08:04:20
A:
You can use the standard HTML attributes
<img src="path_to_image" title="Information tip about the image"/>
Or use JS librery to produce more friendly tooltips
jQuery with a tooltip plugin
Prototype with a tooltip extension
mmanco
2010-08-11 08:11:04
A:
To add a tooltip to anything, use the tag <acronym>
, or in german: (great html reference page). Style with css if necessary.
Martin
2010-08-11 08:48:49