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

  • SEARCH
  • Home
  • 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 900251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:21:19+00:00 2026-05-15T15:21:19+00:00

How to determine if cursor position is on start of a defined row in

  • 0

How to determine if cursor position is on start of a defined row in textarea with JavaScript?

  • 1 1 Answer
  • 1 View
  • 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-15T15:21:19+00:00Added an answer on May 15, 2026 at 3:21 pm

    Using the answer provided here:

    Caret position in textarea, in characters from the start

    you can get the offset of the cursor position in the text. After you have that, you can count the newline characters present in the text of the <textarea> before the offset to figure out which line you are on. If the offset is just after a newline, then you’re at the start of the row. Using these two methods, you should be able to figure out if you are at the start of a specific line. For example:

    var offset = getCaret('mytextarea');
    var text = document.getElementById('mytextarea').value;
    var line_number = 1;
    var i;
    
    for ( i = 0; i < offset; i++ ) {
        if ( text[i] == '\n' ) {
            line_number++;
        }
    }
    
    if ( !i || text[i-1] == '\n' ) {
        // You're at the start of a line
    }
    

    Note: IE might use carriage returns (\r) as well, so you may have to account for them.

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

Sidebar

Related Questions

How to determine on which row of textarea is the cursor with javascript?
I need to determine whether the cursor is within XML range. I've set start
What is the easiest way to determine if my current cursor position is over
I have a table with start and finish datetimes that I need to determine
I need to determine the width and height of the current mouse cursor used
Is it possible to make Java program that will determine the absolute position (x,y
I am trying to determine if a certain row exists, when I am just
In javascript I'd like to be able to determine the element in the html
is there a way how to determine if the current mouse cursor is animated
Problem: The code reads each row and should determine whether it is empty or

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.