Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/04/2009, 07:15
Avatar de eall
eall
 
Fecha de Ingreso: noviembre-2008
Ubicación: Concepcion
Mensajes: 127
Antigüedad: 16 años
Puntos: 8
Respuesta: Jquery: Cambiar atributo src de todas las imagenes

Prueba con lo siguiente:

Código javascript:
Ver original
  1. $(document).ready(function() {
  2. $('img').attr("src",function() {
  3.     var href=$(this).attr("src");
  4.     return ruta+href;
  5. });
  6. });

espero te sirva.

Exito.