Top
Home

<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
</head>


<script>
$(document).ready(function(){
$("#demo img[title]").tooltip();
});
</script>

<!-- tooltip element -->
<div id="demo">
 <img src="image1.jpg" title="The tooltip text #1"/>
 <cite title="The tooltip text #2"/>There</cite>

</div>