Código Javascript:
Ver original
function registroOK() { msj = 'Se ha registrado exitosamente, por favor continue completando su perfil ...'; //$('#mensajeOK').html(msj).fadeIn("normal", function () { $(this).animate({"marginTop": "0px"}, 2000).fadeOut('normal', function () { window.location.href="mis-fotos.php"; } ) }); $('#mensajeOK').html(msj).css("marginTop", "1800px").show(5000, function () { $(this).fadeOut('normal', function () { window.location.href="mis-fotos.php"; } ) }); //window.location.href='perfiles.php'; } function registroERROR(msj) { //$('#mensajeERROR').html(msj).fadeIn("normal", function () { $(this).animate({"marginTop": "1800px"}, 9000).fadeOut() });//$(this).css("marginTop","1800px").show("fast")}); $('#mensajeERROR').html(msj).css("marginTop", "1800px").show(5000, function () { $(this).hide(2000)}); }
el cual muestra un mensaje de error o de ok, el problema que tengo es que mi pantalla es muy larga (verticalmente) y nose como hacer para que el div del mensaje se muestre donde esta el scroll de la ventan actualmente, como esta el codigo ahora, lo que hace es mover la ventan hasta la posicion 1800px, pero lo que quiero hacer es que si el scroll de la ventana esta a la mitad se muestre ahi.
Espero que se haya entendio