Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/05/2012, 15:10
txemaarbulo
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Validar W3C "there is no attribute"

Suelen ocurrir estas cosas. Y más si se trata de XHTML 1.0 Strict
Tal vez te sirva esto:

// @CHANGED - Hecho de modo que acepta el atributo rel en lugar de data-reveal-id
$('a[rel]').live('click', function(e) {
e.preventDefault();
var modalLocation = $(this).attr('rel');
$('#'+modalLocation).reveal($(this).data());
});