hello all,
i am using script functions for tooltip.
function showTip(js_element)
{
var str_selectedElement="";
var str_tipElement=document.getElementById(js_element);
var str_comboElement=document.all('cmd_combo');
for(var i=0;i<str_comboElement.length;i++)
{
if(str_comboElement[i].selected)
{ str_selectedElement=str_comboElement[i].text;
break;
}
}
str_tipElement.innerHTML=str_selectedElement;
}
This function is giving me tooltip on clicking/selecting items from dropdown list.i want tooltip according to my mouse movement over the list. Not on seleceted item.
<DIV id='tooltip'></DIV>
<Select name="cmd_combo" onmouseover="showTip('tooltip')">
let me know which functions i have to use to get that.
Thanks,
pooja