Skip to content

Instantly share code, notes, and snippets.

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 michaelminter/983468 to your computer and use it in GitHub Desktop.
Save michaelminter/983468 to your computer and use it in GitHub Desktop.
Limit input box characters to defined Count
$(document).ready(function(){
$('#myInput').keyup( function() {
var $this = $(this);
if($this.val().length > 20)
$this.val($this.val().substr(0, 20));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment