Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/07/2012, 09:58
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses
Puntos: 1567
Respuesta: Cargar imagen antes de ocultar loader

Por definición
load(), jQuery
Load data from the server and place the returned HTML into the matched element.
Así que de ninguna manera va a funcionar eso que estás haciendo.
Podés probar con algo asi
Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <script type="text/javascript">
  3. function imagenCargada()
  4. {
  5. // ocultar el div
  6. // otras funciones
  7. alert("hola");
  8. }
  9. </head>
  10.  
  11. <img src="logo.gif" onload="imagenCargada()" width="150" height="150" />
  12. </body>
  13. </html>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.

Última edición por emprear; 05/07/2012 a las 11:52 Razón: ortografía