les agradesco su ayuda, aqui les dejo el archivo el depurador de ie me muestra error en esta parte
Código Javascript:
Ver original
res.innerHTML = ajax.responseText
Código Javascript:
Ver original
function nuevoAjax() { /* Crea el objeto AJAX. Esta funcion es generica para cualquier utilidad de este tipo, por lo que se puede copiar tal como esta aqui */ var xmlhttp=false; try { // Creacion del objeto AJAX para navegadores no IE xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { // Creacion del objet AJAX para IE xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch(E) { if (!xmlhttp && typeof XMLHttpRequest!='undefined') xmlhttp=new XMLHttpRequest(); } } return xmlhttp; } function buscarDato(){ bus = document.getElementById('dato').value; res = document.getElementById('resultado'); ajax=nuevoAjax(); ajax.open("POST", "bus_inscrip.php",true); ajax.onreadystatechange=function() { if (ajax.readyState==4) { res.innerHTML = ajax.responseText } } ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); ajax.send("busqueda="+bus) }