https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25532 --- Comment #15 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- In OpacUserJs: $(document).ready(function(){ $("#translControl1").autocomplete({ source: function(request, response) { $.ajax({ url: "https://en.wikipedia.org/w/api.php", dataType: "jsonp", data: { 'action': "opensearch", 'format': "json", 'search': request.term }, success: function(data) { response(data[1]); } }); }, open: function() { $('.ui-autocomplete').append('<li style="text-align:right;font-size:80%;padding: 5px 10px;background:rgba(0,0,0,0.1)">Powered by Wikipedia</li>'); } }); }); -- You are receiving this mail because: You are watching all bug changes.