Tema: Cargador
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 25/07/2009, 17:38
Edig
 
Fecha de Ingreso: diciembre-2007
Mensajes: 927
Antigüedad: 16 años, 5 meses
Puntos: 12
Respuesta: Cargador

CUALUIER MODERADOR SIENTASE LIBRE DE CERRAR EL TEMA YA LO ARREGLE CON UN SIMPLE CODE EL JS LO PUBLICO

//ocultar o aparecer el cargando
function cargando() {
var cargando = window.document.getElementById('cargando').style.d isplay;
if(cargando != 'none') {
window.document.getElementById('cargando').style.d isplay = 'none';
}else{
window.document.getElementById('cargando').style.d isplay = '';
}
}

Y al incio de cada funcion php lo llamo y antes de llamar la funcion de php lo llamo

funciona muy bien