Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/02/2012, 02:37
50l3r
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Problema con evento js y ajax

el codigo ajax esta en un js que asocio desde la cabecera:

Código Javascript:
Ver original
  1. $('dl.listado-noticias dt a').click(function(){
  2.         $('#pop_overlay').fadeIn("fast");
  3.         $('#pop_overlay .box').fadeIn("fast");
  4.        
  5.         var miPage = this.rel;
  6.         var el = this;
  7.         $.get(miPage, function(data) {
  8.             $('#pop_overlay .box').html(data);
  9.            
  10.         });
  11.     });