Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a structure like this:

<ul>
  <li>text1</li>
  <li>text2</li>
  <li>text3</li>
</ul>

How do I use javascript or jQuery to get the text as an array?

['text1', 'text2', 'text3']

My plan after this is to assemble it into a string, probably using .join(', '), and get it in a format like this:

'"text1", "text2", "text3"'
share|improve this question

5 Answers

up vote 58 down vote accepted
var optionTexts = [];
$("ul li").each(function() { optionTexts.push($(this).text()) });

...should do the trick. To get the final output you're looking for, join() plus some concatenation will do nicely:

var quotedCSV = '"' + optionTexts.join('", "') + '"';
share|improve this answer
2  
Does jQuery guarantee an order to the elements returned by the query? I would assume that the order returned is the same as the ordering in the DOM (ie text1, text2, text3), but I don't know what to look for in the documentation to see if this is true. – styfle Dec 23 '11 at 1:08
1  
I've never seen it traverse the DOM in any other way that normal reading order. So although I can't prove it, I would bet the farm that it alwaays traverses the DOM top to bottom :) – Flater Aug 8 '12 at 8:35

Without redundant intermediate arrays:

arr = $('li').map(function(el, i) {
    return $(el).text();
});

See jsfiddle demo

share|improve this answer
4  
You miss .get() at the end. – Felix Kling Mar 4 '11 at 18:12
3  
Based on Felix Klings suggestion: arr = $('li').map(function(){ return $(this).text(); }).get(); – Emil Stenström Mar 7 '11 at 14:21
Thx, fixed..get() added – kimstik Mar 16 '11 at 12:38
1  
i dont understand why "get function" is necessary. – ingcarlos Jul 26 '11 at 20:54
2  
The worse thing is, that the iterator is wrong, you need to switch the element and index, so that it says function(i, el). – Kitto Apr 12 '12 at 18:05
show 4 more comments

And in clean javascript:

var texts = [], lis = document.getElementsByTagName("li");
for(var i=0, im=lis.length; im>i; i++)
  texts.push(lis[i].firstChild.nodeValue);

alert(texts);
share|improve this answer

kimstik was close, but not quite.

Here's how to do it in a convenient one-liner:

$.map( $('li'), function (element) { return $(element).text() });

Here's the full documentation for jQuery's map function, it's quite handy: http://api.jquery.com/jQuery.map/

Just to answer fully, here's the complete functionality you were looking for:

$.map( $('li'), function (element) { return $(element).text() }).join(', ');
share|improve this answer
I just saw this here (stackoverflow.com/questions/4856283/…) and was gonna repost since it's a great trick to know – SeanDowney Aug 15 '12 at 19:16
var arr = new Array();

$('li').each(function() { 
  arr.push(this.innerHTML); 
})
share|improve this answer
1  
Instead of relying on innerHTML, you should change "this" to a jQuery object and use the jQuery native text method. $(this).text() – Nathan Strutz Oct 29 '08 at 14:49
1  
why? eventually $(this).html() will use the native method – Kheu Jul 21 '10 at 9:00

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.