Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created August 16, 2021 10:18
Show Gist options
  • Select an option

  • Save aimahdi/26e587c8f69eec267a49d1c7cb31d439 to your computer and use it in GitHub Desktop.

Select an option

Save aimahdi/26e587c8f69eec267a49d1c7cb31d439 to your computer and use it in GitHub Desktop.
This snippet will capitalise input
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