The onchange
property sets and returns the event handler for the change
event.
element.onchange = handlerFunction; var handlerFunction = element.onchange;
handlerFunction
should be either null
or a JavaScript function specifying the handler for the event.
See the DOM event handlers page for information on working with on...
handlers.
See the change
event documentation for information about the event.
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'onchange' in that specification. | Living Standard |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | ? | ? | ? | ? |
Feature | Android | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
Basic support | ? | ? | ? | ? | ? | ? | ? | ? |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onchange