Skip to content

Instantly share code, notes, and snippets.

@tenkunkyab
Created February 2, 2016 11:34
Show Gist options
  • Select an option

  • Save tenkunkyab/9162492d878d78407d69 to your computer and use it in GitHub Desktop.

Select an option

Save tenkunkyab/9162492d878d78407d69 to your computer and use it in GitHub Desktop.
<input type="text" style="text-transform:uppercase"/>
<!-- transform the content of the input to uppercase automatically faster and easier than the following -->
<script>
$(input#id).keyup(function() {
this.value = this.value.toUpperCase();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment