Hi,
Good day!I have a jquery code for autocomplete list but I notice that only 10 records display. How can I make it more?
$().ready(function() { $("#work_data").autocomplete("get_work_list.php", { width: 300, matchContains: true, mustMatch: true, selectFirst: false }); $("#work_data").result(function(event, data, formatted) { $("#work_data").val(data[1]); }); });
Thank you