Let's say I have the following HTML -
<form id="form1" name="form1">
<ul id="mn" name="mn">
<li id="one" name="one">bleh</li>
<li id="blarg" name="blarg">bluh</li>
<li id="goats" name="goats">blah</li>
</ul>
</form>
Normally, there would be a loop function to gather all of the elements within the "mn" ul element. I am curious if there is an alternative to looping that will provide me with an array of the li elements.



Reply With Quote



Bookmarks