I am working with jquery.
And I have text input on the form, I would like to handle the change event.
$("#my_input").change(function(){alert('123');});
The event fires normally when I edit the field manually, but when I change the value of the field using a script (sometimes with an external script), it does not work.
is there any solution?
and thanks in advance.
Youcef04
source share