Edit in JSFiddle

<p title="jQuery Tooltip is amazing !!">This is example for jQuery tooltip. The tooltip will follow the mouse as you move along the paragraph element.</p>
$(function () {
    $("p").tooltip({
        track: true
    })
});