Does anyone know how to add an Image on a td element using vbscript? I need to add a "img" element, not a background image, and it has to be vbscript.
<script type="text/vbscript">
function onload()
'//Add Image to td1
end function
<script>
<table>
<tr>
<td id="td1"></td>
</tr>
</table>
Can anybody help me?
Thanks in advance.