Look at this part of html:
<table id="Table">
<tr>
<td><img src="Sample Pics/Koala.jpg""></td>
<td><img src="Sample Pics/Desert.jpg"></td>
<td><img src="Sample Pics/Fall.jpg"></td>
</tr>
<tr>
<td><*img src="Sample Pics/Fish.jpg"></td>
<td><img src="Sample Pics/Fresh Fruit Platter.jpg"></td>
<td><img src="Sample Pics/Hydrangeas.jpg"></td>
</tr>
</table>
I want to change the (for example) *image source via js. i know it would be something like:
document.getElementById("Table").children[?].BlahBlahBlah.src = "New Source";
But i have no idea about it.
Is there some places o learn about children? i looked through W3Schools.com but i found nothing useful.