I have a jQuery autocomplete field with this code:
var tags = [\"a\", \"ab\", \"abc\", \"abcd\", \"adbce\", \"abcdef\", \"abcdefg\", \"abcdefgh\", \"abcdefg
$.ajax({ url:"http://absolutepathtofile/autosuggest.php", type:"post", success:function(html){ $("#user_phone").autocomplete( {position: {offset: "0 -10px"}, source: html }); } });