How to add a Tooltip to a "td" with jquery?
- by Scott
I need to add a tooltip/alt to a "td" element inside of my tables with jquery.
Can someone help me out?
I tried:
var tTip ="Hello world";
$(this).attr("onmouseover", tip(tTip));
where I have verified that I am using the "td" as "this".
Edit:I am able to capture the "td" element through using the "alert" command and it worked. So…