This will do it:
Code:
<div onMouseover="if (document.all&&!window.opera){document.all('select').style.visibility='hidden'};ddrivetip('Here is a tooltip that displays underneath the below dropdown')" onMouseout="hideddrivetip();if (document.all&&!window.opera){document.all('select').style.visibility='visible'};">Here is some text that will show tooltip</div>
Just substitute that for the divison you have. It works off of the name of the select element. To avoid potential confusion it would be better to name the select element something other than select. Like:
Code:
<div onMouseover="if (document.all&&!window.opera){document.all('mySelect').style.visibility='hidden'};ddrivetip('Here is a tooltip that displays underneath the below dropdown')" onMouseout="hideddrivetip();if (document.all&&!window.opera){document.all('mySelect').style.visibility='visible'};">Here is some text that will show tooltip</div>
<br>
<select name="mySelect">
<option value="1">Dropdown value number one</option>
<OPTION value="2">Nokia 2</OPTION>
<option value="3">Nokia 3</option>
</select>
It's possible to integrate this into the script but, if it is only for a few select (pun intended) boxes, it is not worth it.
Bookmarks