Cita:
// Cambia estos parametros
var time = 10; // el tiempo en que se refresca
var div = "mostrar"; // el div que quieres actualizar!
var direction = "wall/consulta.php"; // el archivo que ira en el div
var varjy = "' . $visit . '";
var varjx = "' . $usu . '";
////////////////////////////////
//
// Refreshing the DIV
//
////////////////////////////////
function refresh(){
// The XMLHttpRequest object
var xmlHttp;
try{
xmlHttp=new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari
}
catch (e){
try{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
}
catch (e){
try{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e){
alert("Tu explorador no soporta AJAX.");
return false;
}
}
}
// Timestamp for preventing IE caching the GET request
var fetch_unix_timestamp ="";// lets declare the variable
fetch_unix_timestamp = function()
{
return parseInt(new Date().getTime().toString().substring(0, 10))
}
var timestamp = fetch_unix_timestamp();
var nocacheurl = direction+"?usu="+varjx+"&visit="+varjy+"&t="+time stamp;
// The code...
xmlHttp.onreadystatechange=function(){
if(xmlHttp.readyState==4){
document.getElementById(div).innerHTML=xmlHttp.res ponseText;
setTimeout('refresh()',time*1000);
}
}
xmlHttp.open("GET",nocacheurl,true);
xmlHttp.send(null);
}
// Empieza la función de refrescar
window.onload = function startrefresh(){
setTimeout('refresh()',time*1000);
}
var time = 10; // el tiempo en que se refresca
var div = "mostrar"; // el div que quieres actualizar!
var direction = "wall/consulta.php"; // el archivo que ira en el div
var varjy = "' . $visit . '";
var varjx = "' . $usu . '";
////////////////////////////////
//
// Refreshing the DIV
//
////////////////////////////////
function refresh(){
// The XMLHttpRequest object
var xmlHttp;
try{
xmlHttp=new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari
}
catch (e){
try{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
}
catch (e){
try{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e){
alert("Tu explorador no soporta AJAX.");
return false;
}
}
}
// Timestamp for preventing IE caching the GET request
var fetch_unix_timestamp ="";// lets declare the variable
fetch_unix_timestamp = function()
{
return parseInt(new Date().getTime().toString().substring(0, 10))
}
var timestamp = fetch_unix_timestamp();
var nocacheurl = direction+"?usu="+varjx+"&visit="+varjy+"&t="+time stamp;
// The code...
xmlHttp.onreadystatechange=function(){
if(xmlHttp.readyState==4){
document.getElementById(div).innerHTML=xmlHttp.res ponseText;
setTimeout('refresh()',time*1000);
}
}
xmlHttp.open("GET",nocacheurl,true);
xmlHttp.send(null);
}
// Empieza la función de refrescar
window.onload = function startrefresh(){
setTimeout('refresh()',time*1000);
}