jQuery & jQueryUI Base

by adamovic

HTML

<link rel="stylesheet" href="http://ajax.microsoft.com/ajax/jquery.ui/1.8.7/themes/black-tie/jquery-ui.css">
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js"></script>
<div class="ui-widget">
<label for="tags">Search: </label>
<input id="tags">
</div>

JavaScript

$(function() {
var availableTags = [
"john",
"john2",
"iohn3",
"john4",
"john white",
"johnny"
];
$( "#tags" ).autocomplete({
source: availableTags, 
autoFocus: true
});
});