---
title: "How to Make Autocomplete textbox using jquery ?"  
description: "How to Make Autocomplete textbox using jquery ?"  
author: "Anonymous User"  
published: 2014-09-22  
updated: 2014-09-22  
canonical: https://www.mindstick.com/forum/2273/how-to-make-autocomplete-textbox-using-jquery  
category: "jquery"  
tags: ["jquery", "javascript"]  
reading_time: 1 minute  

---

# How to Make Autocomplete textbox using jquery ?

i'm just make [auto](https://www.mindstick.com/forum/33810/remote-view-in-android-auto-cancel-custom-notification) complete [textbox](https://www.mindstick.com/forum/12714/dynamic-textbox-in-gridview) but not work properly can you solve my [problem](https://yourviews.mindstick.com/view/81399/tackling-the-problem-of-unemployment-during-corona-pandemic)**here is my jquery [library](https://www.mindstick.com/forum/34615/software-framework-vs-library)**

```
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">  <script src="//code.jquery.com/jquery-1.10.2.js"></script>  <script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
```

\
**Here is my [JQuery Code](https://www.mindstick.com/forum/157821/write-a-jquery-code-that-selects-all-the-checkboxes-in-a-form-when-a-select-all-button-is-clicked)**\
\

```
<script>  $(function() {    $("#autocomplete").autocomplete();  });  </script>
```

\
**And here is my [Html](https://www.mindstick.com/articles/1530/design-a-simple-stylish-calculator-using-html-css-and-javascript) Code**\

```
<div class="ui-widget">  <label>Tags: </label>  <input id="autocomplete"></div>
```

## Replies

### Reply by Anonymous User

Hi Ankita,\
try this [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii):

```
<script>`  $(function() {    var availableTags = ["Java","C#","JQuery","VB","C","C++","JavaScript","Html","SQL","DS","CSS"];    $("#autocomplete").autocomplete({      source: availableTags    });  });  </script>
```

\
Hope the above code will solve your problem.


---

Original Source: https://www.mindstick.com/forum/2273/how-to-make-autocomplete-textbox-using-jquery

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
