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?
its not that jQuery is not working on links that you add via append. The problem lies with when are you calling your plugin. After the append has happened or before it. jQuery has .live to support such situations at runtime