Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/main/inc/lib/search/search_widget.js

23 lines
622 B

$(document).ready(function() {
/* toggle advanced view */
$('a#tags-toggle').click(function() {
$('#tags').toggle(150);
return false;
});
/* reset terms form */
$('#tags-clean').click(function() {
// clear multiple select
$('select option:selected').each(function () {
$(this).attr('selected', '');
});
return false;
});
/* ajax suggestions */
$('#query').autocomplete('search_suggestions.php', {
multiple: false,
selectFirst: false,
mustMatch: false,
autoFill: false
});
});