JSFiddle - React, Tailwind, and code Playground
by yijiang
HTML
<link rel="stylesheet" href="http://dl.dropbox.com/u/1722364/jsfiddle.css">
<div id="galleria">
<img alt="Productname 1" src="bens_img/1.jpg">
<img alt="Productname 2" src="bens_img/2.jpg">
<img alt="Productname 3" src="bens_img/3.jpg">
<img alt="Guess what?" src="bens_img/4.jpg">
</div>
<ul class="textformat">
</ul>
JavaScript
$('#galleria > img').each(function(){
$('<li>', {
text: this.alt
}).appendTo('.textformat');
});