Cita:
Iniciado por luthorsant Hola danistrein, que pena por mi ignorancia, pero como arreglo los archivos,
de esta forma:
ajax.js
consulta.php
index.html,
si es asi en index.html incluyo el script de ajax.js?
que pena por preguntarte esto
Gracias
asi es entre head del index.html agregale :
y listo
o tambien si quieres puedes poner el codigo directamente en el index asi:
Código Javascript
:
Ver original<script type="text/javascript">
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;
}
function enviarConsulta(pais){
ajax = objetoAjax();
var divContenido = document.getElementById('contenido');
divContenido.innerHTML= 'Cargando Consulta...';
data = 'consulta.php?pais='+pais;
ajax.open("GET", data);
ajax.onreadystatechange=function() {
if (ajax.readyState==4){
divContenido.innerHTML= ajax.responseText;
}}
ajax.send(null);
}
</script>
PD: ahí te envie un MP con mi msn asi me agregas y me consultas por ahi cualquier cosa, asi no escribimos mas mensajes aki
, saludos