Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/04/2013, 14:03
Avatar de Lynxcraft
Lynxcraft
 
Fecha de Ingreso: noviembre-2007
Ubicación: yecla murcia
Mensajes: 1.346
Antigüedad: 16 años, 5 meses
Puntos: 51
Respuesta: Duda con PHP+Ajax+Mysql

a simple vista


Código:
function realizaProceso(){
    
        var parametros = $(":button").val();
		var data = {stores:parametros};

        $.ajax({
                data:  data,
                url:   '../bd/stores-ajax.php',
                type:  'post',
                beforeSend: function () {
                        $("#mapa").html("Procesando, espere por favor...");
                },
                success:  function (response) {
                        $("#mapa").html(response);
                }
        });
}
__________________
Sobran las ideas cuando faltan ganas de trabajar en ellas
Lynxcraft