JSFiddle - React, Tailwind, and code Playground
by vinodlouis
HTML
<p style="display:block;text-align:center;margin-bottom:10px;"><label for="lookup">Search By Reference: <input type="text" name="lookup" id="lookup"/></p> <table width="80%" border="2" class="rfqTbl" id="clientTbl">
JavaScript
$(function(){
var tags = [{"id":"77","label":"110826"},{"id":"76","label":"110667"},{"id":"74","label":"110808"}];
$('#lookup').autocomplete({
source: tags,
minLength:2,
});
});