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.
23 lines
622 B
23 lines
622 B
|
17 years ago
|
$(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
|
||
|
|
});
|
||
|
|
});
|