Código HTML:
<script> function nuevoAjax(){ 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 EnviarSubmit(Id,Respuesta){ var contenedor; contenedor = document.getElementById('recibirAjax'); ajax=nuevoAjax(); ajax.open("POST", "Ajax/DevolverRespuestas.php",true); ajax.onreadystatechange=function() { if (ajax.readyState==4) { contenedor.innerHTML = ajax.responseText; } } ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); ajax.send("id="+Id+"&respuesta="+Respuesta); } </script>