JSFiddle - React, Tailwind, and code Playground

by Gourav Singh

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.js"></script>
<script src="http://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<input type="text" id="name"/>

JavaScript

$(function(){
 $.getJSON("http://jsonplaceholder.typicode.com/posts", function(data) {

  $( "#name" ).autocomplete({
     source: data 
});

});

});