How can I implement jquery plugin qTip2 http://craigsworks.com/projects/qtip2/ with asp.net textbox? (elegant tooltip on mouseover)
You should wait for document ready:
$(function () { //shorthand for $(document).ready(function(){...});
$('tbLoginName').qtip({
content: 'This is an active list element',
show: 'mouseover',
hide: 'mouseout'
})
});
Please use the below code for asp.net Textbox element.
$(function () {
$("[id$='_txtTest']").tooltip();
});
<asp:TextBox ID="txtTest" runat="server" ToolTip="TOOLTIP"></asp:TextBox>
Definitely it will work.