Cool! Ok here is where I'm at - which is not far. I really have no idea what to do with that? Thanks for any help. 
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
.tooltip{position:relative}
.tooltip:hover:after{
position:absolute;
top:20px;
left:0;
width:150px;
background:#111;
background:rgba(0,0,0,.8);
border-radius:5px;
color:#fff;
content:attr(title);
padding:8px 0;
white-space:nowrap;
z-index:98;
text-align:center;
}
.tooltip:hover:before{
border:solid;
border-color:#111 transparent;
border-width:6px 6px 0 6px;
bottom:27px;
content:"";
left:-10px;
position:absolute;
z-index:99
}
</style>
<script type="text/javascript">
function exitHandler = function (el) {
el.title = cachedTitle;
};
var cachedTitle = el.title;
el.title = '';
.tooltip({
target: el,
title: cachedTitle,
onExit: exitHandler
});
</script>
</head>
<body>
<a class="tooltip" title="Share With Email">TOOLTIP</a>
</body>
</html>
Bookmarks