Tooltips based on div : Tooltips : GUI Components JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » GUI Components » Tooltips »

 

Tooltips based on div

















<html>
<head>
<title>Style Example</title>
<script type="text/javascript">
    function showTip(oEvent) {
        var oDiv = document.getElementById("toolTipComponent");
        oDiv.style.visibility = "visible";
        oDiv.style.left = oEvent.clientX + 5;
        oDiv.style.top = oEvent.clientY + 5;
    }

    function hideTip(oEvent) {
        var oDiv = document.getElementById("toolTipComponent");
        oDiv.style.visibility = "hidden";
    }
</script>
</head>
<body>
<P>Move your mouse over the hyper link.</p>
<a href="http://www.navioo.com"
   onmouseover="showTip(event)" onmouseout="hideTip(event)">www.navioo.com</a>

<div id="toolTipComponent" style="background-color: green; position: absolute; visibility: hidden; padding: 5px">
<span style="font-weight: bold">Custom Tooltip</span><br/>
detail information for www.navioo.com
</div>

</body>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo GUI Components
» Tooltips