Guest User

Untitled

a guest
Apr 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(function(){
  3. $(".test").limitInput({
  4. limit: 10,
  5. blockTyping: false,
  6. charName: 'caracteres',
  7. excededString: 'excedidos',
  8. leftString: 'faltam'
  9. });
  10.  
  11. $(".test3").limitInput({
  12. limit: 10,
  13. blockTyping: false,
  14. charName: 'letras',
  15. excededString: 'passadas',
  16. leftString: 'faltam'
  17. });
  18. });
  19. </script>
Add Comment
Please, Sign In to add comment