02/01/2007, 09:27
|
| | | Fecha de Ingreso: abril-2003 Ubicación: La Paz - Bolivia
Mensajes: 2.003
Antigüedad: 21 años, 6 meses Puntos: 35 | |
Re: Cargar ajax y php loading.................
[php]
ajax.onreadystatechange = function()
{
if (ajax.readyState == 1)
document.getElementById("status").style.display = 'block';
if (ajax.readyState == 4)
{
document.getElementById("status").style.display = 'none';
}
}
[php]
connection closed. |