<details>
<summary>Click me</summary>
### Heading
1. Foo
2. Bar
* Baz
* QuxA Pen by Alex Pivtorak on CodePen.
A Pen by Jim Wright on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h2>Onchange Event used on user input fields</h2> | |
| <p>Only works on <input>, <select>, and <textarea></p> | |
| <h3>Demo: Type into the inputs or click the button.</h3> | |
| <section> | |
| Not Debounced: | |
| <input type="text" id="notDebounced" oninput="onInputChange({id: this.id, value: this.value, arg1: 'someArg1'})"> | |
| <button onclick="sendCharsToInput({id: 'notDebounced'})" >Send string to the input</button> |