Hi Peter
Thank you for your answer. With ‘touchstart’ or ‘pointerdown’ events, I have the same problem that all form values are submitted with ‘false’ value. But I found an event ‘touchend’ and this one helps.
So this is working:
$('#filter32').on('click touchend', function (event) {
document.getElementById("FormFilter").submit();
});
Many thanks for your support.
Best regards,
Christian