Definition and Usage
The oninput attribute fires when an element gets user input.
The oninput attribute fires when the value of an <input> or <textarea> element is changed.
Tip: This event is similar to the onchange event. The difference is that the oninput event occurs immediately after the value of an element has changed, while onchange occurs when the element loses focus. The other difference is that the onchange event also works on <keygen> and <select> elements.
Applies to
The oninput attribute is part of the Event Attributes, and can be used on any HTML elements.
Elements | Event |
---|---|
All HTML elements | oninput |
Example
Input Example
Execute a JavaScript when a user writes something in an <input> field:
<input type="text" oninput="myFunction()">
Try it Yourself »
Browser Support
Event Attribute | |||||
---|---|---|---|---|---|
oninput | Yes | Yes | Yes | Yes | Yes |