Alternative Information Example : Image Img « HTML « JavaScript DHTML
- JavaScript DHTML
- HTML
- Image Img
Alternative Information Example
<html>
<body>
<script>
function function1() {
document.all.myImage.alt = 'http://www.java2s.com';
}
</script>
<img id="myImage" onmouseover="function1();" src="http://www.java2s.com/style/logo.png">
</body>
<html>
Related examples in the same category