Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i need cursor's postion in textarea, if user hits the enter (return) it should give me the cursor location (line number in textarea) ? i want to validate 75 chars in textarea (15 chars in single row - total rows must be 5 user should not hit enter(return) after that)

share|improve this question
5  
whathaveyoutried.com? – Gareth Sep 21 '12 at 12:03
and atleast acknowledge that someone has posted a response for you. This isn't a code writing community, its a community of developers that will try to help you. At least have the common decency to reply. – RoryPickering Sep 21 '12 at 12:57

2 Answers

up vote 1 down vote accepted
function getCaret(el) {
  if (el.selectionStart) {
    return el.selectionStart;
  } else if (document.selection) {
    el.focus();

    var r = document.selection.createRange();
    if (r == null) {
      return 0;
    }

    var re = el.createTextRange(),
        rc = re.duplicate();
    re.moveToBookmark(r.getBookmark());
    rc.setEndPoint('EndToStart', re);

    return rc.text.length;
  } 
  return 0;
}
share|improve this answer

try using this useful jQuery plugin!

http://www.examplet.buss.hk/jquery/caret.php

the examples on the page only use <input type="text"/> examples but you can target it was text areas and it works great!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.