Posted in

Rollover mediante Jquery

 $("img#modificabt").hover(
 function(){
 toNormal = $(this).attr("src");
 toOn = "public/img/buttons/modificar_on.gif";
 $(this).attr({
 src: toOn
 });
 },
 function(){
 $(this).attr({
 src: toNormal
 });
 }
 );

Deixa un comentari

L'adreça electrònica no es publicarà. Els camps necessaris estan marcats amb *


The reCAPTCHA verification period has expired. Please reload the page.