1

How can I use jquery UI autocomplete widget with https://www.w3schools.com/js/customers_mysql.php for example

1 Answer 1

1

You can find the answer here: https://jqueryui.com/autocomplete/

But it basically says that you do something like:

$( function() { 
    $( "#id" ).autocomplete({
        source: "https://www.w3schools.com/js/customers_mysql.php",
        minLength: 2
    });
});
Sign up to request clarification or add additional context in comments.

1 Comment

Are you able to show how you've done it using jsfiddle so that I can assist you further?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.