![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
14/07/2010, 11:51
|
![Avatar de RIVERMILLOS](http://static.forosdelweb.com/customavatars/avatar344698_2.gif) | | | Fecha de Ingreso: marzo-2010
Mensajes: 1.336
Antigüedad: 14 años, 11 meses Puntos: 15 | |
Respuesta: ayuda con jquery y IE. no es que no sale ningun error solamente que me con esto
$('#formulario_historial').live("submit",function( ) {
var serial=$('#serial').val();
if(serial!=""){
$("#loadinf").show("slow");
$.ajax({
type: 'POST',
url: $(this).attr('action'),
data: $(this).serialize(),
success: function(data){
if(data=="false"){
Boxy.alert("No existe registro");
$("#loadinf").hide("slow");
return false;
}else{
$("#loadinf").hide("slow");
return false;
}}})
}else{
Boxy.alert("ingrese serial");
return false;}
return false;
});
traigo unos datos por ajax y los muestro en div estilo alert , pero en IE no me funciona no se si es el live o el metodo submit porque se redirecciona al archivo que davuelve los datos y los mustra parapdiando el navegador.. o sea no hay ajax jajaja
saludos |