jQuery code to turn off autocomplete for ASP.NET textbox. $(document).ready(function(){ $("#<%=Textbox.ClientID %>").attr("autocomplete", "off"); }); But there is no need to use jQuery for this as this can be done easily just by setting attribute for ASP.NET textbox. <asp:TextBox runat="server" ID="Textbox" autocomplete="off"/> But jQuery can be useful, if there are many ASP.NET textboxes then jQuery can […]
Comments Off on Turn off autocomplete for textbox in ASP.Net using jQuery