Here is the complete HTML for the file. Make sure you specify proper path for the Tooltip.js file. You can combine translucency along with background image for that classy look!
Move your mouse over following lines:
Line One
Line Two
xml
<html> <head> <title>HTML Translucent Tooltip</title> </head> <LINK rel="stylesheet" type="text/css" href="styles/StyleSheet.css"> <script language="javascript" src="js/Tooltip.js"></script> <body onload=init()> <strong> Move your mouse over following lines:<br><br> <span class="ttip" onmouseover=if(t1)t1.Show(event,l1) onmouseout=if(t1)t1.Hide(event)> Line One </span><br> <span class="ttip" onmouseover=if(t1)t1.Show(event,l2) onmouseout=if(t1)t1.Hide(event)> Line Two </span> </strong>
</body> <script> var t1=null; var l1="Tooltip for line one"; var l2="Tooltip for line two"; function init() { t1 = new ToolTip("a",true,40); } </script> </html>
Translucent tooltip with background !
var t1=null; var l1=”Tooltip for line one”; var l2=”Tooltip for line two”; function init(){t1 = new ToolTip(“a”,true,40); return false; } window.onload = init;
Copyright (c) 2007-2019 Ashish Patil . Please read FAQ for more details.