15/03/2010, 01:44
|
| | Fecha de Ingreso: noviembre-2009
Mensajes: 209
Antigüedad: 15 años Puntos: 0 | |
Respuesta: Consultas sobre mi web Muchas gracias por vuestra respuestas
He agreagado el codigo que me habeis dicho a la funcion ajax pero no hace nada,
aqui os dejo el código:
function objetoAjax(){
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;
document.body.scrollTop = 0;
}
muchas gracias |