http://www.perlmonks.org?node_id=1060069


in reply to Perl Title Help

Original parent content:

In the below code, i m showing the value of $comment at the last column of table. Instead of that I want only "comment" to be written and when I will mouseover that I should get the value of $comment in the tooltip or popup. In html we can use title tag for that. How to do that in perl ? my current code:
push(@rows,$q->td([$appname, $prname, $sla, $sdate, $stime, $edate,'<F + +ONT COLOR='.$fail.'>'.$etime.'</FONT>','<FONT COLOR='.$fail.'>'.$st +at +us.'</FONT>', $comment]));
in html this can be done with :
<b id="text1" title="A bold text">Hello my friends!</a>
Please help me with the solution. Thanks in advance !!!