newbees 0 Posted September 2, 2015 Report Share Posted September 2, 2015 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 Quote Link to post Share on other sites
Ingolme 1,020 Posted September 2, 2015 Report Share Posted September 2, 2015 How many results is get_work_list.php returning? Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.