javascript input onchange not working
why this doesn´t work:
开发者_运维知识库inputButton.addEventListener('onchange', jsFunction, false);
I change the inputbox and it doesn´t call jsFunction.
Try change
instead of onchange
inputButton.addEventListener('change', jsFunction, false);
精彩评论