adding tooltip to an entire table

liunx

Guest
Hello<br />
<br />
I have a table which contains many components.<br />
Is it possible to add a tooltip to the entire table, so no matter where the mouse is over the table, the tooltip will appear?<br />
something like the alt attribute for an image, but for a whole table.<br />
<br />
thanks in advance<!--content-->Well you should not be using a table for layout.<br />
<br />
To create a tooltip (for any element) use the title attribute.<br />
<br />
<table title="A tooltip."><!--content-->thanks for the help<!--content-->No problem, happy to help. :)<!--content-->
 
Back
Top