Perfect, thank you.
Jut for the record, the event listener was cached as follows:
let select_cache = null
$(document).on('change', '#my_field_id', function(event) {
if (!select_cache) {
setTimeout(() => {
//do your thing
console.log('phones ringing, dude.');
//clear the cache
select_cache = null
}, 100)
}
select_cache = event
}
Issue can be marked as resolved.