Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $(".initial_cap").keydown(function(){
  2. console.log("aaa");
  3. var val = $(this).val();
  4. if(val.length==1)
  5. {
  6. val = val.charAt(0).toUpperCase() ;
  7. $(this).val(val);
  8. }
  9. });
  10.  
  11. <input class="form-control initial_cap" placeholder="Address1" required="required" maxlength="50" name="address1" type="text" value="" aria-required="true">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement