Adding Jquery Tooltip to an asp:hyperlink inside a gridview
So i am pretty new to jquery and am loving it so far but i am not sure how to tackle this issue. Right now i have a link in a gridview that displays in a tool tip more detailed information about that product. I would like to use the jquery tool tip as it looks much better, but i cant get anything to work, my guess is because the hyperlink is wrapped in the gridview the jquery function call cant find it. Here is an example of some of the code i am trying to get to work where tabs1 is the div wrapping the gridview. Thanks for any help
$(document).ready(function() { $("#tabs1 a[title]").tooltip('#tooltip'); });