forked from kiwix/kiwix-tools
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
492 B
20 lines
492 B
<script type="text/javascript" src="/skin/jquery-ui/external/jquery/jquery.js"></script>
|
|
<script type="text/javascript" src="/skin/jquery-ui/jquery-ui.min.js"></script>
|
|
<script>
|
|
var jk = jQuery.noConflict();
|
|
jk(function() {
|
|
jk( "#kiwixsearchbox" ).autocomplete({
|
|
|
|
source: "/suggest?content=__CONTENT__",
|
|
dataType: "json",
|
|
cache: false,
|
|
|
|
select: function(event, ui) {
|
|
jk( "#kiwixsearchbox" ).val(ui.item.value);
|
|
jk( "#kiwixsearchform" ).submit();
|
|
},
|
|
|
|
});
|
|
});
|
|
</script>
|