Hello world!
Type something and then complete the words by pressing tab. Go ahead and try!
Press tab multiple times to iterate matches.
Feel free to try the different hinting methods:
.tabComplete(wordsArray [, options]);
var options = { after: "", arrowKeys: false, caseSensitive: false, hint: "placeholder", minLength: 1 };
<script src="jquery.js"></script> <script src="tabcomplete.js"></script> <script> // jQuery ready event $(function() { $("#target").tabcomplete([ "array", "with", "words", "to", "complete" ]); }); </script>