Response title
This is preview!
$().ready(function() {
$("#name").autocomplete("/autocomp.php", {
width: 350,
selectFirst:false,
delay:10,
minChars:1,
matchCase:false,
mustMatch:false,
autoFill:false,
});
});
<input id="name" />
$input = $_GET['q'];
# then do SQL to find matches for this
# return results as an array
# ... now how do I display this data ??
© 2013 jQuery Foundation
Sponsored by and others.