Created
October 25, 2021 18:13
-
-
Save Octagon-simon/87212a002b55cf66dfbe6f98d5fece9c to your computer and use it in GitHub Desktop.
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
| <script> | |
| function myfunc(x = "this") { | |
| var dataValue = x.value; | |
| console.log(dataValue); | |
| } | |
| document.addEventListener('DOMContentLoaded', (event) => { | |
| //Add an Input Event | |
| document.querySelector('#inp_foo').addEventListener('input', function() { | |
| myfunc(this); | |
| }); | |
| }) | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment