How to read list elements using Mootools -


how read each list elements using mootools in follows,

<ul id="tickervertical">         <li>first</li>         <li>second</li>         <li>third</li>         <li>fourth</li>         <li>fifth</li>         <li>sixth</li>         <li>first</li>         <li>second</li>         <li>third</li>         <li>fourth</li>         <li>fifth</li>         <li>sixth</li> </ul> 

thanks

not sure mean "read"

var items = $('tickervertical').getelements('li'); items.each(function(item, index){   // item , index @ service }); 

Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -