Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/11/2011, 11:54
Avatar de livemusic
livemusic
 
Fecha de Ingreso: abril-2011
Ubicación: Lima - Chorrillos
Mensajes: 150
Antigüedad: 13 años
Puntos: 18
Respuesta: enviar mas de una variable post jquery

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2.     $('.logo').click(function() {  
  3.     var myId = $(this).attr("id");
  4.     $.post("procesar.php", { variable:myId, variable2:myId2, varialbe3:myId3},
  5.         function(data){
  6.             $("#encabezado").html(data);
  7.         });
  8.     });
  9. });