Is there a way to have a Tool-Tips type popup TITLE when you hover over a SELECT drop-down box? I suppose I could write some Javascript for the mouseover event. Any clues? Thanks.
Hi There ...
you can write a javascript for mouseover and by in that
javascript you display a div.
and by mouseout you hide that div ...
here is th code ...
function displaytext(urltxt) {
if (urltxt=='*')
BarToolTip.style.visibility='hidden';
else
{
BarToolTip.innerHTML=urltxt;
BarToolTip.style.left=event.x-10+document.body.scrollLeft;
BarToolTip.style.top=event.clientY+10+document.body.scrollTop;
BarToolTip.style.visibility='';
}
}
And right after your body tag you can declare a div like
this :
and then you can use mouseover and mouseout calling
Displaytext function and passing the text you want to
be displayed and for hiding the div call the function
by mouseout event with * parameter.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.