Exercici 3 Events
De wikiserver
La revisió el 19:22, 9 gen 2014 per Asalinas (Discussió | contribucions) (Es crea la pàgina amb «Pagina html: <pre> <HTML> <HEAD> <TITLE> EXERCICI 3 </TITLE> <script src="exercici1.js"></script> </HEAD> <BODY> <img width="200px" height="100px" id="imagen" src=…».)
Pagina html:
<HTML> <HEAD> <TITLE> EXERCICI 3 </TITLE> <script src="exercici1.js"></script> </HEAD> <BODY> <img width="200px" height="100px" id="imagen" src="google.jpg" alt="imagen"/> </BODY> </HTML>
Javascript :
window.onload=function(){ document.getElementById("imagen").onmouseover=function(){ this.src="google2.jpg" } document.getElementById("imagen").onmouseout=function(){ this.src="google.jpg" } }