Hi, I need to use the noConflict method in my project. But I have a problem. If I do not use this method, the project works correctly. But if I use this method, I have an error. How can I solve this problem.
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script type='text/javascript' src="javascripts/jquery.min.js"></script> <script type="text/javascript"> $.noConflict(); </script> <script language="javascript" type="text/javascript"> function goster() { alert($("#TextBox1").val()); } </script> </head> <body> <form id="form1" runat="server"> <asp:TextBox ID="TextBox1" onBlur="goster();" runat="server"></asp:TextBox> </form> </body> </html>
jquery
Emre ORDUKAYA
source share