All that problem is this ..
jQuery(function() { var $tooltip = jQuery('<div class="tooltip">You can mention..?</div>'); jQuery('.link-class:first').live("hover", function() { jQuery(this).before($tooltip); }, function() { jQuery(this).before($tooltip).remove(); }); });
source share