Mega Code Archive

 
Categories / JavaScript DHTML / HTML
 

Image dynsrc

<html> <body> <script language="JavaScript"> function setSource() {     document.all.myImage.dynsrc = "http://www.rntsoft.com/style/logo.png"; } </script> <img id="myImage" start="mouseover" alt="" width="200" height="200"> <button onclick="setSource();">Set Source</button> </body> </html>