Ver Mensaje Individual
  #7 (permalink)  
Antiguo 01/09/2009, 07:12
GENESISBM
 
Fecha de Ingreso: enero-2009
Mensajes: 119
Antigüedad: 15 años, 10 meses
Puntos: 1
Respuesta: Temporizador para pasar al otro DIV

Nada, lo he puesto así, y sigue igual:

Código:
<script type="text/javascript">
<!--
function preloader(){
        var xmlhttp=false;
        try{
                xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
        }catch(e){
                try{
                        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                }catch(E){
                        xmlhttp = false;
                }
        }
 
        if(!xmlhttp && typeof XMLHttpRequest!='undefined'){
                xmlhttp = new XMLHttpRequest();
        }
        return xmlhttp;
}
 
function publicidad(url){
        var contenido, preloader;
        contenido = document.getElementById('paginacapa');
        preloader = document.getElementById('distractor');
        //creamos el objeto XMLHttpRequest
        ajax=preloader(); 
        ajax.open("GET", url,true); 
        ajax.onreadystatechange=function(){
                if(ajax.readyState==1){
                }else if(ajax.readyState==4){
                        if(ajax.status==200){
							    contenido.style.display = "block"
                                contenido.innerHTML = ajax.responseText; 
                        }
                }
        }
        ajax.send(null);
}
 
window.onload = function () {setInterval("publicidad()", 7000);};
//-->
</script>