My PHP code return JSON data to jquery autocomplete but autocomplete not working
Jquery autocomplete
$("input#txtaddkey").autocomplete({
source: "keyword.php",
minLength: 2
});
PHP code
$fetch = mysql_query("SELECT * FROM o_keyword where keyword like '%" . $query . "%'");
while ($row = mysql_fetch_array($fetch, MYSQL_ASSOC)) {
$row_array['id'] = $row['id'];
$row_array['keyword'] = $row['keyword'];
array_push($return_arr,$row_array);
}
echo json_encode($return_arr);
JSON data output
[{"id":"2","keyword":"Games"},{"id":"3","keyword":"Goa"}]
And while typing "Ga" I am getting empty li tag in front end.
See Question&Answers more detail:os