T teejayem Oct 4, 2007 #1 I have an image <img src"contract.gif" alt"Contract" /> Is there anyway I can change the image using VBScript?
I have an image <img src"contract.gif" alt"Contract" /> Is there anyway I can change the image using VBScript?
B Brian K. Williams Oct 4, 2007 #2 I haven't used VBScript in years; you can use JavaScript like this: First give the element an ID. <img id="MyImage" src="contract.gif" alt="Contract" /> Then: document.getElementById("MyImage").src = "../images/new.gif"; Regards, Brian K. Williams
I haven't used VBScript in years; you can use JavaScript like this: First give the element an ID. <img id="MyImage" src="contract.gif" alt="Contract" /> Then: document.getElementById("MyImage").src = "../images/new.gif"; Regards, Brian K. Williams