Solucio atribut

De wikiserver
Dreceres ràpides: navegació, cerca
<!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"); 
  }) 
});