![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
24/02/2010, 07:35
|
| | Fecha de Ingreso: noviembre-2009
Mensajes: 112
Antigüedad: 15 años, 3 meses Puntos: 0 | |
Respuesta: cargar datos en la misma ventana GRACIAS POR responder, ps tengo el siguiente código en javascript
ajax = objetoAjax();
ajax.open("POST", "../acciones/graficarNotas.php", true);
ajax.onreadystatechange=function()
{
if (ajax.readyState==4)
{ document.getElementById("divRegistrar").innerHTML = ajax.responseText; }
}
ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
ajax.send("arrayNotasPracsEspecificas="+arrayNotas PracsEspecificas+"&arrayNotasPracsGenericas="+arra yNotasPracsGenericas);
No se que estoy haciendo mal,, gracias |