Ver Mensaje Individual
  #17 (permalink)  
Antiguo 17/01/2010, 09:00
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 1 mes
Puntos: 101
Respuesta: problemas con script Jquery en Opera

Mh.... yo que vos uso esto:
Cita:
$("#sendbutton").click(function (){

$.ajax({
type: "POST",

url: "upload.php",

data: "variable1=tanto",

dataType: "script",

beforeSend: function(objeto){
$("#invitaciones").html("Mensaje: Cargando...");
},

success: function(msg){

$("#sendButton").fadeOut("fast");
$("#divLoading").show("fast");
$("#divLoading").fadeIn("fast");

},
error: function(objeto, quepaso, otroobj){
alert("ERROR! : "+quepaso);
}

return false;

});
Busca un poco mas sobre la funcion $.ajax de jquery para saber como hacer tu animacion en tiempo real.

Ah! Sobre el final del evento onclick deberia ir return false, creo, para evitar que te vayas de la pagina. Mh... investiga please y conta como es.