- $(function() {
- $('.filter').change(function() {
- document.filter[this.name].value = this.value;
- document.filter.submit();
- });
+ $('.filter').change(function() {
+ document.filter[this.name].value = this.value;
+ document.filter.submit();
+ });
+
+ $('.check-filter').change(function() {
+ document.filter[this.name].value = this.checked ? '1' : '';
+ document.filter.submit();
+ });