jQuery Autocomplete Clear Textbox After Select

Introduction:

Here I will explain how to clear autocomplete textbox in jQuery after select or jQuery clear autocomplete textbox after select.    

Description:


To clear autocomplete textbox after select in jQuery we need to write the code like as shown below
select: function(event, ui) {
this.value = "";
return false;
}

Comments