Thursday, 15 August 2013

Turn off autocomplete for textbox in ASP.Net using jQuery

Introduction:

jQuery code to turn off autocomplete for ASP.NET textbox.

HTML:


JS:
$(document).ready(function(){
  $("#<%=Textbox.ClientID %>").attr("autocomplete", "off");
});

No comments:

Post a Comment