$( function() { $("#products").autocomplete({ source: "/itv/search.php", minLength: 3, select: function(event, ui) { var url = ui.item.url; if(url != '#') { location.href = "https://www.itv-gmbh.de" + url; } },
html: false, // optional (jquery.ui.autocomplete.html.js required)
// optional (if other layers overlap autocomplete list) open: function(event, ui) { $(".ui-autocomplete").css("z-index", 1000); } }); });
