Image 'src' Property : Image Img « HTML « JavaScript DHTML
- JavaScript DHTML
- HTML
- Image Img
Image 'src' Property
<html>
<body>
<img id="myImg"
src=""
alt="" onClick="function1();">
<button onclick="function1();">Click here to load image</button>
<script language="JavaScript">
function function1() {
document.all.myImg.src = "http://www.java2s.com/style/logo.png";
}
</script>
</body>
</html>
Related examples in the same category