Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/12/2013, 15:15
moscrates
 
Fecha de Ingreso: julio-2008
Mensajes: 366
Antigüedad: 16 años, 3 meses
Puntos: 7
Respuesta: Linkscon ajax

Solucion

Código Javascript:
Ver original
  1. $("a#To").click(function(e) {
  2.       e.preventDefault();
  3.       var data = $(e.target).data();
  4.         for(var i in data){
  5.             dato = data[i];
  6.         }
  7.       $("#cargador").load("BandejaEntrada.php",{valor1:dato}, function(response, status, xhr) {
  8.           if (status == "error") {
  9.                var msg = "Error!, algo ha sucedido: ";
  10.               $("#capa").html(msg + xhr.status + " " + xhr.statusText);
  11.               }
  12.        });
  13.   });