JSFiddle - React, Tailwind, and code Playground

by Alyson Melo

HTML

<div class="ui-widget">
    <input id="searchinput"/>
</div>

JavaScript

var jsonData = [ {
        "label": "Apple annuncia OS X El Capitan",
        "the_link": "http://www.apple.com"
    },{
        "label": "Apple l'Phone flessibile",
        "the_link": "http://www.apple.com/iphone"
    },{
        "label": "iCloud Apple, attacco hacker in Cina",
        "the_link": "http://www.icloud.com"
    }];

$("#searchinput").autocomplete({
    source: jsonData,
    select: function(event,ui) { 
        //location.href = ui.item.the_link;
        //console.log(event);
        window.location.href = ui.item.the_link;
    }
});