Dejo el codigo para que lo vean.
Saludos y gracias.
Código Javascript:
Ver original
<script type="text/javascript"> function escribir1(str) { if (str=="") { var escribir = document.getElementById("texto1").value; escribir.innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { escribir=xmlhttp.responseText; } } xmlhttp.open("POST","post.php?id=1&&text=<?php echo $_POST['texto1'];?>"+str,true); xmlhttp.send(); } </script>
y el input
<input name="texto1" type="text" id="texto1" size="63" maxlength="90" />
<input name="submit1" type="submit" id="submit1" value="Enviar" onclick="escribir1(document.getElementById('texto1 '))"/>