Tengo una serie de imagenes de ancho indefinido. Quisiera un efecto mouse over para ampliarlas un poquitin, 0.2% ( o 2px ). Como?
Esto no se resolverlo:
width = $(this).attr("width");
$(this).css({"width": width+"5px"});
*******
SOLUCIONADO.
Así:
width = $(this).attr("width");
width = width+5;
$(this).css({"width": width+"px"});
Lo cual valdría para porcentajes tambien.