Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/11/2008, 23:56
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 20 años, 5 meses
Puntos: 53
Respuesta: JQuery, carga de html + preload

en esta linea

$("#seccion").load("secciones/empleo.html");

agregale un callback, asi:

Código PHP:
$("#seccion").load("secciones/empleo.html",function(){
        $(
'#loading').fadeOut('slow', function() {
            $(
this).remove();
        });
}); 
saludos