Si me pueden ayudar a hacerlo trabajar les agradesco desde ya.
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; } function sendData(){ divResultado = document.getElementById('hidded'); name=document.form1.name.value; email=document.form1.email.value; msg=document.form1.msg.value; //instanciamos el objetoAjax ajax=objetoAjax(); //usando del medoto POST //archivo que realizará la operacion ajax.open("POST", "contact_proc.php", true); ajax.onreadystatechange=function() { if (ajax.readyState==4) { //mostrar resultado divResultado.innerHTML = ajax.responseText } } ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); ajax.send("name="+name+"&email="+email+"&msg="+msg) }