Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make bubble help appear when I hover over a link

Tags:

html

css

I have seen some web sites where bubble help appears when I hover over a link.

Can anyone tell me how this is done? I would love to do this for my site if it would not add too much to the bandwidth needed.

like image 570
Marilou S Avatar asked May 20 '11 15:05

Marilou S


2 Answers

use the Title attribute in the href tag

eg

<a href="http://www.website.com" title="Website name">Website Link</a>

a Tool tip with the title contents will pop up

like image 58
Rob Avatar answered Oct 17 '22 10:10

Rob


Take a look at tooltips, for example: 30 jQuery tooltips.

like image 34
Ryan Avatar answered Oct 17 '22 11:10

Ryan