I am trying to view tool tip on Text box using Jquery scripts on a web form using Master Page. When I rum my code everything seems working fine,but in DOM of Google chrome browser,the resources folder i get the above error. I am not able to figure out where i am wrong.
<asp:TextBox runat="server" CssClass="UserName"></asp:TextBox>
<script type="text/javascript">
$(function () {
$(".UserName").tooltip();
});
</script>
Thanks in Advance.