I need to add an attribute to the first link of a list of links in a project I'm working on and thinking of a way to do this using JavaScript. Here are the codes below, they are dynamically generated but what I want is to figure out a way to insert id="cover_title" in the first tag of every list of with the sequence of , So that the code looks exactly like below. Any ideas?
<ul id="gallery">
<li id="album">
<div id="album_title">Summer 2012</div>
<div id="photo"><a id="cover_title" href="#"><img src="images/photo1.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo2.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo3.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo4.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo5.png"/></a></div>
</li>
<li id="album">
<div id="album_title">Spring 2012</div>
<div id="photo"><a id="cover_title" href="#"><img src="images/photo1.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo2.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo3.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo4.png"/></a></div>
<div id="photo"><a href="#"><img src="images/photo5.png"/></a></div>
</li>
photo1,photo2,..,and so on instead of samephotoeverywhere and update your question accordingly... – Asif Jun 25 '12 at 14:34