I need to trigger onchange event of an input
with JS. Right now I'm using this:
document.getElementById("myElement").onchange();
but it seems that IE can not execute that. I know i can trigger it with jQuery, but in this project i cant use it. Is there any other ways to do this?