Solucio esdeviments
De wikiserver
La revisió el 20:13, 12 feb 2015 per Jnoguera (Discussió | contribucions) (Es crea la pàgina amb «<source lang="java"> var functionControlador=function(event){ if ($(this).css("color")=="#0000ff") $(this).css("color", "#ffff00"); else $(this).css…».)
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);
});