display an Image from a XML document
The following line of code is in my javascript and is apart of my XML DOM reading function. I have test this code and temp.firstChild.nodeValue does contain the name of my image - one.gif.
document.myform.IMAGE.src = temp.firstChild.nodeValue;
The following is apart of the HTML body.
<form name = "myform">
<table>
<tr>
<td><input type="image" name="IMAGE"></td>
</tr>
</table>
</form>
How can I set the IMAGE file to equal my XML element and display in my table ?
Thanks
Brendon

