<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function() { $("#nama_suami").autocomplete({ source: function(request, response) { $.ajax({ url: "fetch_nama_lengkap.php", type: "POST", dataType: "json", data: { term: request.term }, success: function(data) { response(data); } }); }, minLength: 2 // Jumlah minimum karakter sebelum autocomplete mulai }); }); </script>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter