[SOLVED] How to change the priority of events?

Hi! There are two events:
$$(document).on(‘click’, ‘#autoQuery’, function () {…});
$$(document).on(‘change’, ‘#autoQuery’, function () {…});
I need to process click first, then change. In Android everything is fine. But in the iPhone first triggered change. How to set the priority of event processing?
Thanks in advance!

1 Like

You can’t change the priority, it’s browser related