Solucio atribut
De wikiserver
La revisió el 20:20, 12 feb 2015 per Jnoguera (Discussió | contribucions) (Es crea la pàgina amb «<source lang="java"> <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.5.1.min.js" ></script> <script src="js/fichero4_color.j…».)
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<script src="js/jquery-1.5.1.min.js" ></script>
<script src="js/fichero4_color.js" ></script>
<title>Ejercicio3_Eventos1</title>
</head>
<body>
<h1>PRIMER TÍTULO</h1>
<p>Cambia el título</p>
<h2>SEGUNDO TÍTULO</h2>
<a href="http://www.google.com" title="Acceso a google" id="miEnlace">Google</a></p>
</body>
</html>
//Fichero Jquery
$(document).ready(function(){
$("p").click(function(){
$("#miEnlace").attr("title","Pepe");
})
});