Ver Mensaje Individual
  #7 (permalink)  
Antiguo 23/12/2010, 09:34
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses
Puntos: 65
Respuesta: Cómo hacer un preloader

Cita:
Iniciado por jvmjunior Ver Mensaje
A mi no me funciona :(
debe ser por las comillas en los atributos de img cambialas a dobles o el de apertura a dobles y los atributos a simples

proba asi

Código HTML:
Ver original
  1.     <head>
  2.         <title>Ejemplo</title>
  3.         <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script><script>
  4.         $(function(){
  5.             $('button').click(function(){
  6.                 $('body').html('<b>Cargando...</b>').load('pagina.html');
  7.                 return false;
  8.             });
  9.         });
  10.         </script>
  11.     </head>
  12.     <body>
  13.         <button>Click</button>
  14.     </body>
  15. </html>