why this doesn´t work:
inputButton.addEventListener('onchange', jsFunction, false);
I change the inputbox and it doesn´t call jsFunction.
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);