I need to create a list of links in a static (.html) page automatically, is there a way of doing this using JavaScript. I tired a few scripts but couldn't work it out.
this is my html...
<a href="1.html"><img src="images/1.jpg" width="119" height="121" alt="" /></a>
and this is what i want the script to generate 55 times...
<a href="1.html"><img src="images/1.jpg" width="119" height="121" alt="" /></a>
<a href="2.html"><img src="images/2.jpg" width="119" height="121" alt="" /></a>
<a href="3.html"><img src="images/3.jpg" width="119" height="121" alt="" /></a>
... and so on, call me lazy but any help would be most appreciated :)
This could also work.
http://jsfiddle.net/T2c3G/
If your anchor tags are contained inside a div, you can do this:
This should do the trick:
JS Fiddle example: http://jsfiddle.net/RWUdG/2/
EDIT: Oops, missed a quote. Fixed.