Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7368237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T03:38:29+00:00 2026-05-29T03:38:29+00:00

Is there a way to limit the characters per line in a textarea? For

  • 0

Is there a way to limit the characters per line in a textarea? For instance, in lines 1-3 of the textarea, only 20 characters are allowed but the lines after that, 50 characters are allowed.

The way the textarea is constructed, I can only limit approximately the same amount of characters per line by changing the width (because it’s in a shape of a box). I am not sure if limiting a different amount of characters per line is possible.

I am asking this because I have an image on top of the textarea and when the user types in something, the text goes underneath the part where the image is absolutely positioned. Unless it is possible to float an image inside a text area? 😕

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T03:38:30+00:00Added an answer on May 29, 2026 at 3:38 am

    Tips on solving this using JavaScript

    Of course you can, if you use JavaScript. See the following snippet using jQuery:

    var result = jQuery('#result');
    var my_textarea = jQuery('#mytext');
    my_textarea.on('keyup', function(event){
        var el = jQuery(this);
        var lines = el.val().split('\n').length;
        var chars = el.val().split('').filter(function(v){
            return v != '\n';
        }).length;
        result.html('You have ' + lines + ' lines and ' + chars + ' chars');
    });
    

    (demonstration is here: http://jsfiddle.net/tadeck/8krTv/1/)

    It counts the number of lines & the number of character, there is no problem in counting characters for each line and disabling ability to add more characters in specific line.

    Image positioned within textarea

    You said some positioning of an image inside textarea could solve the problem. Of course you can do this too – one of the solutions is to make an image a background for the textarea, and then correct padding from the side you want it to appear, so the text does not overflow the image.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to limit a number of characters that are loaded using
Is there any way to limit text in php and after that to add
HI, is there any way to limit the characters that the uploading class assigns
My professor requests that my code does not exceed 80 characters per line, but
Is there a way to limit a regular expression to 100 characters with a
Is there an efficient way to limit the number of characters for a mysql
Is there a way to limit the number of rows in a SQL Server
Is there a way to limit the number of rows returned from content provider?
1) Is there any way to limit the scope of an Envers audit trail?
I have a general doubt .. Is there a way we limit the scope

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.