JeroenDortmans
Technical User
Is there a way to make a tooltip for a database driven listbox without using client side code?
When not does anybody know a way to develop this?
Thx
When not does anybody know a way to develop this?
Thx
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script>
function ShowHelp(TheListBox)
{
document.getElementById("Help").style.display=""
document.getElementById("Help").style.left=TheListBox.offsetWidth+5+"px"
}
function HideHelp()
{
document.getElementById("Help").style.display="none"
}
</script>
<select onmouseover="ShowHelp(this)" onmouseout="HideHelp()">
<option>ASDASDASDASDASDASD</option>
</select>
<div style="position:relative">
<div id="Help" style="position:absolute;left:0px;top:-22px;display:none;border:1px solid
#000000;background-color:yellow">
asd
</div>
</div>