5 $('.filter').change(function() {
6 document.filter[this.name].value = this.value;
7 document.filter.submit();
10 $('.check-filter').change(function() {
11 document.filter[this.name].value = this.checked ? '1' : '';
12 document.filter.submit();
15 $('.text-filter').each(function() {
17 $(inp).parent().submit(function() {
18 document.filter[inp.name].value = inp.value;
19 document.filter.submit();
25 $('.autoslug-source').change(function() {
26 $('.autoslug').attr('value', slugify(this.value));