I have medium skills does anybody know an Autocomplete jquery script?
SimonIoa 77 Master Poster
Recommended Answers
Jump to PostHi, have you tried this?
Jump to PostWith local sources, to match only the beginnings of the terms, use this method:
$(function() { var availableTags = <?php echo json_encode($result); ?> $( "#tags" ).autocomplete({ source: function( request, response ) { var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( request.term ), "i" ); response( $.grep( availableTags, …
All 5 Replies
cereal 1,524 Nearly a Senior Poster Featured Poster
SimonIoa 77 Master Poster
cereal 1,524 Nearly a Senior Poster Featured Poster
DJBirdi 54 Junior Poster
DJBirdi 54 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.