I have a input
text field which is filled with the url of an image using a jQuery function.
How do I use the "onChange" event of the input
to run the jQuery function?
If you update field by JavaScript, than after changing value just call on it change()
$('#myId').val('new_url').change();