Autocomplete

Other topics

Simple example

The Autocomplete widgets provides suggestions while you type into the field.

<script>
  $(document).ready(function() {
    var tags = ["ask","always", "all", "alright", "one", "foo", "blackberry", "tweet","force9", "westerners", "sport"];
    $( "#tags" ).autocomplete({
      source: tags
    });
  });
</script>
<input type='text' title='Tags' id='tags' />    

Contributors

Topic Id: 519

Example Ids: 1700

This site is not affiliated with any of the contributors.