Created
August 16, 2021 10:18
-
-
Save aimahdi/26e587c8f69eec267a49d1c7cb31d439 to your computer and use it in GitHub Desktop.
This snippet will capitalise input
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
| let inputBox = document.getElementById("ff_150_input_text"); | |
| inputBox.addEventListener('input', function(){ | |
| inputBox.value = inputBox.value.toUpperCase(); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment