forum

Home / DeveloperSection / Forums / How to Make Autocomplete textbox using jquery ?

How to Make Autocomplete textbox using jquery ?

Anonymous User 3761 22-Sep-2014
i'm just make auto complete textbox but not work properly can you solve my problem
here is my jquery 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

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

And here is my Html Code

<div class="ui-widget">
  <label>Tags: </label>
  <input id="autocomplete">
</div>

Updated on 22-Sep-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By