3

can someone recommand a good autocomplete or autosuggest that uses javascript or jquery? I want it to be fast and with no ajax.

Thanks.

1
  • 1
    Interestingly HTML5 provides a "local autocomplete" facility using the <datalist> element. Commented Feb 13, 2011 at 15:47

2 Answers 2

2

The jQuery Autocomplete plugin allows you to use either Ajax OR a locally-defined data set (no ajax).

Sign up to request clarification or add additional context in comments.

Comments

0

It's best to Use the jquery UI built in Autocomplete Widget. http://jqueryui.com/demos/autocomplete/

The good part is, all jquery scripts can be loaded from google CDN. No extra load on your server.

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" type="text/css" media="all" /> 
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js" type="text/javascript"></script>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.