Hola, necesito recargar un div una vez se ejecute el script del servidor:
<script>
//iniciamos XMLHTTPRequest
function iniciar(){
try{
req = new XMLHttpRequest();
}
catch(err1)
{
try
{
req = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(err2)
{
try
{
req = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(err3)
{
req = false;
}
}
}
return req;
}
var peticion = iniciar();
function uno(acciones){
var url = "modificarin.php?" + acciones;
var aleatorio = parseInt(Math.random()*9999999);
alert(url)
peticion.open('GET', url+ "&rand=" + aleatorio, true);
peticion.onreadystatechange = respuesta;
peticion.send(null);
}
function respuesta(){
if(peticion.readyState == 4){
if(peticion.status == 200){
document.getElementById('personalizada').reload()//aqui es donde necesito ayuda
}else{
alert('ERROR' + peticion.statusText)
}
}else{
document.getElementById('personalizada').innerHTML ='Cargando...'
}
}</script>
En la línea en grande es donde necesito ayuda, ya que reload no funciona, y no puedo usar responseText porque en el archivo php lleva un header location y me muestra toda la página...