I wish to fire a Onchange event for all the changes of Form elements within a DIV
Here\'s the snippet
I had the same problem in Edge and fixed it using an EventListener.
My code looked like this:
HTML:
Then I changed it to:
JS:
document.getElementById("my_id").addEventListener("change", function() { my_function(this.value.trim()) });