---
title: "Use jQuery Tokeninput Autocomplete ."  
description: "Use jQuery Tokeninput Autocomplete ."  
author: "Anonymous User"  
published: 2016-03-04  
updated: 2016-03-04  
canonical: https://www.mindstick.com/forum/34031/use-jquery-tokeninput-autocomplete  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# Use jQuery Tokeninput Autocomplete .

We want to jQuery Tokeninput [Autocomplete](https://www.mindstick.com/forum/156169/what-is-google-suggest-or-autocomplete) in a [textbox](https://www.mindstick.com/forum/12714/dynamic-textbox-in-gridview) how to use this please help me.

## Replies

### Reply by Anonymous User

Here we are going to use **jQuery Tokeninput Autocomplete** in a text box . first download jquery.tokeninput.jsfrom http://loopj.com/jquery-tokeninput/ . and use like below code.

```
@{
    ViewBag.Title = "index";
}
<link href="~/Content/token-input.css" rel="stylesheet" />
<link href="~/Content/token-input-facebook.css" rel="stylesheet" />
<script src="~/Scripts/jquery-2.1.4.min.js"></script>
<script src="~/Scripts/jquery.tokeninput.js"></script>
<div>
    <input type="text" id="SelectEmployee" name="blah" />
    <script type="text/javascript">
    $(document).ready(function () {
        $("#SelectEmployee").tokenInput("/Home/GetEmp");
    });
    </script>
</div>
```

![Use jQuery Tokeninput Autocomplete .](https://www.mindstick.com/mindstickforums/72d52eef-f737-4756-8658-180c57b35f36/images/7c855f7e-1372-466e-92a4-190883085e72.png)


---

Original Source: https://www.mindstick.com/forum/34031/use-jquery-tokeninput-autocomplete

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
