Suppose some code that when you click on the selected optics performs the function. Everything works on the computer, on the taskbars when choosing option, removeclass does not work.

What could be the reason?

$('.block select option).on("click", function(){ $('.block2').removeClass('block3'); }); 

    1 answer 1

    On mobile devices, interaction with select occurs through its own UI. You cannot modify it and hang events on option. Use event change at select .

    enter image description here