/limitChars

jQuery plugin limiting characters in input to its width.

Primary LanguageJavaScript

limitChars

jQuery plugin for making a text input not allow you type more character than fits into it.

###Dependencies

jQuery

###Usage:

<input id="limited-input" type="text"/>

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.limitChars.js"></script>
<script type="text/javascript">
  $('#limited-input').limitChars();
</script>