 
			
				25/07/2009, 17:38
			
			
			     |  
      |    |    |    Fecha de Ingreso: diciembre-2007  
						Mensajes: 927
					  Antigüedad: 17 años, 10 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           |