02/04/2011, 11:39
|
| | | Fecha de Ingreso: junio-2008 Ubicación: Barcelona
Mensajes: 227
Antigüedad: 16 años, 4 meses Puntos: 0 | |
Respuesta: Loading effect con un gif en jquery Ya encontre el modo:
Código HTML:
Ver original <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script><script> $(function(){ $('#button').click(function(){ alert("test"); $('#prueba').html(' <img src="preloader.gif" alt="cargando"/> Cargando... ').load('test.php'); return false; }); }); <a href="#" id="button">test </a> <div id="prueba" style="width:300px;height:300px;background:#ccc"></div>
|