Skip to content

Instantly share code, notes, and snippets.

@emmanuelbarturen
Created July 21, 2017 15:31
Show Gist options
  • Save emmanuelbarturen/612256f2f9b7091b9cb0bd9b5c5008df to your computer and use it in GitHub Desktop.
Save emmanuelbarturen/612256f2f9b7091b9cb0bd9b5c5008df to your computer and use it in GitHub Desktop.
simulate native maxlenth validation for mozilla
$('input[maxlength]').on('keyup',function(){
var max = $(this).attr('maxlength');
var currentLength = $(this).val().length;
return max <= currentLength;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment