Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/11/2010, 19:07
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años
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;
});