This is a very easy way to create tooltip using jQuery. This tooltip is shown on “mouseover†event, but you can customize it. First, add latest jQuery into head tag in your html. [html] [/html] Then insert the following code: [html] $(document).ready(function() { $(‘.baloon’).mouseover(function() { text = $(this).children(‘span’).html(); html = ‘ ‘+text+’ ‘; $(this).append(html); })… Continue reading Easiest way to create tooltip using jQuery