is there a method in jquery that allows to catch when field is modified by script?
This only works when input field modified by hands
$('input[name=myInput]').change(function() { ... });
so as this
$('input[name=myInput]').on('input', function() { ... });
I want an event listener for this field to be able to catch this:
$('input[name=myInput]').val('changed_value');