Código Javascript
:
Ver originalvar CLEAR = {
elemento : null,
updateLinks : function($this) {
this.elemento = $this;
this.clean();
return false;
},
clean: function() {
$("#div1 a").removeClass("luces");
this.elemeto.addClass("luz");
}
}
$("#div1 a").click(function(){
CLEAR.updateLinks($(this));
});