index.html
<!DOCTYPE html>
<html>
<head>
<title>jQuery ToolTip</title>
<link rel="stylesheet" type="text/css" href="css/tooltipster.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.tooltipster.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.tooltip').tooltipster();
});
</script>
</head>
<body>
<a href="http://calebjacob.com" class="tooltip" title="This is my link's tooltip message!">Link</a>
</body>
</html>
Doemo:
0 comments:
Post a Comment