Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/06/2015, 03:26
The_uncle
 
Fecha de Ingreso: octubre-2014
Ubicación: Reino Unido
Mensajes: 8
Antigüedad: 10 años
Puntos: 0
Respuesta: Comprovar clase con .hasClas

Gracias por tu respuesta marlanga. Me has enseñado algo mas queno sabía :)

Al final lo he solucionado así:

Código:
    $('#article img:not(.link').each( function() {
      var $img = $(this),
      href = $img.attr('src');
      $img.wrap('<a href="#" type="button" data-toggle="modal" data-target="#post_image-modal" data-post_image="' + href + '"></a>');
        //$img.wrap('<a href="' + href + '" target="_blank"></a>');
      });
Muchas gracias