Solucio esdeviments

De wikiserver
Dreceres ràpides: navegació, cerca
var functionControlador=function(event){ 
   if ($(this).css("color")=="#0000ff") 
      $(this).css("color", "#ffff00"); 
   else 
      $(this).css("color", "blue"); 
}; 
 
$(document).ready(function(){ 
 $("p").bind("click mouseenter mouseleave", functionControlador); 
});