Change paragraph first letter to capital using jQuery


Change paragraph first letter to capital using jQuery

jQuery(document).ready(function(){
   jQuery("textarea").keypress(function(){
      var txt = jQuery(this).val();
      if(txt.length<2){
        var res = txt.toUpperCase();
        jQuery(this).val(res);
      }
    });
});
Advertisement

2 thoughts on “Change paragraph first letter to capital using jQuery

  1. hello!,I love your writing very much! percentage we communicate extra approximately your post on AOL? I require an expert on this house to unravel my problem. May be that’s you! Taking a look forward to see you.

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s