how to count number of lines in textarea
-
HI All i have a textarea. and i want to count number of lines in this textarea. actually i have created a HTML Editor using textarea. can anybody tell me how to solve this problem. thanks.
-
HI All i have a textarea. and i want to count number of lines in this textarea. actually i have created a HTML Editor using textarea. can anybody tell me how to solve this problem. thanks.
-
HI All i have a textarea. and i want to count number of lines in this textarea. actually i have created a HTML Editor using textarea. can anybody tell me how to solve this problem. thanks.
-
thanks sumit.
-
you can count for the number of occurances for \n function countRows() { var rows = document.getElementById("test").value.split('\n');; alert(rows.length); } this will give the number of lines
Thanks Laddie Kindly rate if the answer was helpful
thanks Laddie.