Get an array of list element contents in jQuery - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:59:16Zhttp://stackoverflow.com/feeds/question/247023http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247023/get-an-array-of-list-element-contents-in-jquery2Get an array of list element contents in jQueryGorgapor2008-10-29T14:32:53Z2008-10-29T15:16:59Z
<p>I have a structure like this:</p>
<pre><code><ul>
<li>text1</li>
<li>text2</li>
<li>text3</li>
</ul>
</code></pre>
<p>How do I use javascript or jQuery to get the text as an array?</p>
<pre><code>['text1', 'text2', 'text3']
</code></pre>
<p>My plan after this is to assemble it into a string, probably using <code>.join(', ')</code>, and get it in a format like this:</p>
<pre><code>'"text1", "text2", "text3"'
</code></pre>
http://stackoverflow.com/questions/247023/get-an-array-of-list-element-contents-in-jquery/247057#2470576Answer by Shog9 for Get an array of list element contents in jQueryShog92008-10-29T14:43:11Z2008-10-29T14:43:11Z<pre><code>var optionTexts = [];
$("ul li").each(function() { optionTexts.push($(this).text()) });
</code></pre>
<p>...should do the trick. To get the final output you're looking for, <code>join()</code> plus some concatenation will do nicely:</p>
<pre><code>var quotedCSV = '"' + optionTexts.join('", "') + '"';
</code></pre>
http://stackoverflow.com/questions/247023/get-an-array-of-list-element-contents-in-jquery/247067#2470671Answer by Dave Ward for Get an array of list element contents in jQueryDave Ward2008-10-29T14:45:06Z2008-10-29T14:45:06Z<pre><code>var arr = new Array();
$('li').each(function() {
arr.push(this.innerHTML);
})
</code></pre>
http://stackoverflow.com/questions/247023/get-an-array-of-list-element-contents-in-jquery/247203#2472031Answer by roenving for Get an array of list element contents in jQueryroenving2008-10-29T15:16:59Z2008-10-29T15:16:59Z<p>And in clean javascript:</p>
<pre><code>var texts = [], lis = document.getElementsByTagName("li");
for(var i=0, im=lis.length; im>i; i++)
texts.push(lis[i].firstChild.nodeValue);
alert(texts);
</code></pre>