How do you get the length of a string in jQuery?

link|improve this question

Excellent just use normal JS. – RubbleFord Jun 25 '09 at 14:03
feedback

8 Answers

up vote 85 down vote accepted

You don't need jquery, just use yourstring.length. See reference here and also here.

link|improve this answer
1  
I think you meant to type "You don't need jquery..." – mgroves Jun 25 '09 at 14:02
1  
You completely right. – Artem Barger Jun 25 '09 at 14:04
1  
Why on earth I was down voted for my answer? – Artem Barger Jun 25 '09 at 14:09
1  
I was too, oh the joys of SO. – karim79 Jun 25 '09 at 14:12
1  
At least people could leave an explanation, what was wrong. – Artem Barger Jun 25 '09 at 14:20
show 2 more comments
feedback

The easiet way:

$('#selector').val().length
link|improve this answer
feedback

jQuery is a JavaScript library.

You don't need to use jQuery to get the length of a string because it is a basic JavaScript string object property.

somestring.length;
link|improve this answer
1  
+1 for including the line 'jQuery is a JavaScript library.' Lots of answers are saying you don't need jQuery, but this may be confusing to a person who thinks that 'jQuery' and 'JavaScript' are two different things. – Grant Wagner Jun 25 '09 at 14:43
feedback

You don't need to use jquery.

var myString = 'abc';
var n = myString.length;

n will be 3.

link|improve this answer
feedback

It's not jquery you need, it's JS:

alert(str.length);
link|improve this answer
feedback

/* HTML */

<div class=".selector">Text mates</div>

/* SCRIPT */

alert(jQuery('.selector').text().length);

===== RESULT =====

10

link|improve this answer
feedback

same way you do it in javascript:

"something".length

link|improve this answer
feedback

A somewhat important distinction is if the element is an input or not. If an input you can use:

$('#selector').val().length;

otherwise if the element is a different html element like a paragraph or list item div etc, you must use

$('#selector').text().length;
link|improve this answer
feedback

protected by Piskvor Sep 16 '11 at 15:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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