при клике внутри label по блоку .finded отменить стандартное действие и отправить форму
$('.filters_inline label').on('click',function(event){
if($(event.target).closest(".finded").length){
event.preventDefault();
$(this).closest('form').submit();
}
});
Закомментировать данный код в chosen.jquery.js
AbstractChosen.browser_is_supported = function() {
/*
if ("Microsoft Internet Explorer" === window.navigator.appName) {
return document.documentMode >= 8;
}
if (/iP(od|hone)/i.test(window.navigator.userAgent) || /IEMobile/i.test(window.navigator.userAgent) || /Windows Phone/i.test(window.navigator.userAgent) || /BlackBerry/i.test(window.navigator.userAgent) || /BB10/i.test(window.navigator.userAgent) || /Android.*Mobile/i.test(window.navigator.userAgent)) {
return false;
}
*/
return true;
};
Для нормальной работы ui на мобильных устройствах подключить https://github.com/furf/jquery-ui-touch-punch
Добавить muted=true
, например: