I have a table with some images that I want to start out with no images in them.I have set the src=\"\".But when viewed in a browser it shows broken image pics.
I’d suggest using CSS to hide the image tags initially:
Then amend that from your JavaScript when you add the image URL:
yourImgObject.src = 'IMAGEURL'; yourImgObject.style.visibility = 'visible'