Get an array of list element contents in jQuery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T15:59:16Z http://stackoverflow.com/feeds/question/247023 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247023/get-an-array-of-list-element-contents-in-jquery 2 Get an array of list element contents in jQuery Gorgapor 2008-10-29T14:32:53Z 2008-10-29T15:16:59Z <p>I have a structure like this:</p> <pre><code>&lt;ul&gt; &lt;li&gt;text1&lt;/li&gt; &lt;li&gt;text2&lt;/li&gt; &lt;li&gt;text3&lt;/li&gt; &lt;/ul&gt; </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#247057 6 Answer by Shog9 for Get an array of list element contents in jQuery Shog9 2008-10-29T14:43:11Z 2008-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#247067 1 Answer by Dave Ward for Get an array of list element contents in jQuery Dave Ward 2008-10-29T14:45:06Z 2008-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#247203 1 Answer by roenving for Get an array of list element contents in jQuery roenving 2008-10-29T15:16:59Z 2008-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&gt;i; i++) texts.push(lis[i].firstChild.nodeValue); alert(texts); </code></pre>