Hola, actualmente uso este script, para que se recargue la información automaticamente:
Código Javascript
:
Ver original<script>
var seconds = 1;
var divid = "room";
var url = "templates/home_body.php";
function refreshdiv(){
var xmlHttp;
try{
xmlHttp=new XMLHttpRequest();
}
catch (e){
try{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e){
try{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e){
alert("Tu explorador no soporta AJAX.");
return false;
}
}
}
fetch_unix_timestamp = function()
{
return parseInt(new Date().getTime().toString().substring(0, 10))
}
var timestamp = fetch_unix_timestamp();
var nocacheurl = url+"?t="+timestamp;
xmlHttp.onreadystatechange=function(){
if(xmlHttp.readyState==4){
document.getElementById('room').innerHTML=xmlHttp.responseText;
setTimeout('refreshdiv()',seconds*1000);
}
}
xmlHttp.open("GET",nocacheurl,true);
xmlHttp.send(null);
}
window.onload = function startrefresh(){
setTimeout('refreshdiv()',seconds*1000);
}
</script>
<script>
refreshdiv();
</script>
Lo que necesito ahora es que al dar click a un enlace pueda cambiar de página sin recargar, como lo hago?