Hello
I have a form with several checkboxes as filter criteria. If the user click on a Checkbox the form will be submitted and the page refreshed.
$(‘#filter32’).on(‘click’, function (event) {
document.getElementById(“FormFilter”).submit();
}
This works fine on a pc. But not on a mobile phone, the click event doesn’t work.
If I try the same with the ‘change’ event, the form is submitted on pc and mobile phone, but the values of the checkboxes are always ‘false’.
How can I solve this problem?