GatorV disculpa mi ignorancia, pero como hago para abrir mi archivo ajax de manera sincrona, que AJAX no era siempre asíncrona??.
Mi función ajax es de esa manera(creo q asi es como lo hacen todos, o al menos parecido)
Cita: 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;
}
Que es lo q tendria que cambiar para que sea de la forma q tu dices??