martes, 4 de mayo de 2010

JQuery: misma accion para todos

$(":radio").click(function (){

//alert('sdf');

//alert(this.name); //votar_1
//alert(this.value); //visitante

var str = this.name;
arr = str.split("_");

var partido = arr[1]; //alert(partido);


//grabar_voto.php?partido=5&ganador=ARG
//mandar a php
var html = $.ajax({
// url: "ajax_existe_user.php?user_nick="+ nick,
type: "POST",
url: "grabar_voto.php",
data: "partido=" + this.name + "&ganador=" + this.value,
async: false
}).responseText;
//

if(html == "1")
{
alert("ya vote partido = " + partido + " y gana =" + this.value);
}
});

No hay comentarios:

Publicar un comentario