Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kevinweber
Last active July 28, 2016 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinweber/54d2bd9983594e8ade5f to your computer and use it in GitHub Desktop.
Save kevinweber/54d2bd9983594e8ade5f to your computer and use it in GitHub Desktop.
Change event for textarea (IE9+)
$('#textareaID').on('input change keyup', function () {
if (this.value.length) {
// textarea has content
} else {
// textarea is empty
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment