02/11/2010, 19:07
|
| | | Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años, 5 meses Puntos: 43 | |
Respuesta: redireccionar presionando radiobutton Tu boton es de tipo submit, tienes que cancelar el evento con un return false;
$("#enviar").click(function() {
if($("#Cnatural").attr("checked")) {
location.href="index.html";
}
if($("#Cempresa").attr("checked")) {
alert("Claro");
}
if($("#Cfuncionarios").attr("checked")) {
alert("Como no");
} return false;
}); |