Ver Mensaje Individual
  #6 (permalink)  
Antiguo 16/07/2009, 20:06
xtian87
 
Fecha de Ingreso: abril-2009
Ubicación: Lima
Mensajes: 108
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Problema con carga de componentes

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??