I am pretty new to Javascript, and I was trying somethings out. I am using a function to load an image inside a table using innerHTML. But the image does not show up, unless
Try giving the image an id of 'image' then using the following:
function show(){ document.getElementById('image').src = 'photos/picture.jpg' }