I am inserting content to a div using jquery like:
$('#divItem').append("<a href='abcd.aspx' class="toolTip" target='_blank'>Go to abcd</a>")
and I am using a jquery plugin to show tooltip on mouse hover the links(that uses class "tooTip").The tooltip works fine for all the links present in the page except the links that I have added with jquery append(). So can any one tell me why this is not working for the links which is added using append()?Is there any solution to this?