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.
<html>
<head>
<script>
function ToolTip(what){
what=eval(what);
what.style.display='block';
what.style.left=event.x+10+document.body.scrollLeft;
what.style.top=event.y+document.body.scrollTop;
}
function UnToolTip(what){
what=eval(what);
what.style.display='none';
}
</script>
<style>
/* defines style for tooltip script, editable*/
.menudiv{
width:150;
background-color:#ddddff;
border-width:1;
border-style:solid;
border-color:#000080;
font-family:Tahoma;
font-weight:bold;
font-color:red;
font-size:11px;
padding:5;
/* leave rest of style alone */
display:none;
position:absolute;
height:10;
}
</style>
</head>
<body>
<!-- Create actual ToolTip layers here -->
<div id="test" class="menudiv">Just testing</div>
<div id="test2" class="menudiv">Testing again, but with more text so it goes on multiple lines automatically</div>
<div id="buttons" class="menudiv">Works on buttons too</div>
<div id="withbutton" class="menudiv"><img src="another.jpg"></div>
<div id="withbuttonandtext" class="menudiv"><img src="another.jpg"><bR>Some text with the picture</div>
<!-- End of ToolTip layers -->
<a href="#" onMouseMove="ToolTip('test');" onMouseOut="UnToolTip('test');">Mouseover me!</a><br>
<a href="#" onMouseMove="ToolTip('test2');" onMouseOut="UnToolTip('test2');">Me too!</a><br>
<a href="#" onMouseMove="ToolTip('buttons');" onMouseOut="UnToolTip('buttons');"><img src="button1.jpg"></a><bR>
<a href="#" onMouseMove="ToolTip('withbutton');" onMouseOut="UnToolTip('withbutton');">Images can be in ToolTip too!</a><br>
<a href="#" onMouseMove="ToolTip('withbuttonandtext');" onMouseOut="UnToolTip('withbuttonandtext');">Or images and text</a><br>
</body>
</html>