Hello !
I have a simple XMl file with image tags:
XML:
<img src="images/image1" alt="My Image 1" />
<img src="images/image2" alt="My Image 2" />
<img src="images/image3" alt="My Image 3" />
<img src="images/image4" alt="My Image 4" />
I need to insert this content ("src" attrib) inside a <div>
tag in my HTML form.
HTML:
<div id="photos">
</div>
Does anyone know how this can be done using jQuery ?
Thanks in Advance.
H.