![Riendo](http://static.forosdelweb.com/fdwtheme/images/smilies/risa.png)
![Confundido](http://static.forosdelweb.com/fdwtheme/images/smilies/confused.png)
PD: También quiero saber si se puede combinar teclear letras con el teclado de la pc alternando con los simbolos del teclado virtual y que queden en el value
Código HTML:
Ver original
<!doctype html> <html> <head> <meta charset="utf-8"> <script> // JavaScript Document var cifra=""; var valores=[]; function display_ecuacion(num){ valores.push(num); document.getElementById("display").value =cifra+num; cifra=document.getElementById("display").value; } function resetearDisplay(){ document.getElementById("display").value =""; cifra = ""; } </script> <style> .tamBot{ width:30px; height:30px; padding:2px; font-size:150; font-weight:bolder; font-style:italic; color:#181531; background-color:#E8F7EE; float:left;} .tablita{ float:none; margin:20px; width:200px; font-size:1em; font-weight:400;} </style> </head> <body> <form action="respuestas.php" name="ejercicio" method="post" enctype="multipart/form-data" > <input name="elreset" type="button" class="dom2" id="borro" value="Borrar" onClick="resetearDisplay()"> <table class="tablita" border="1" > <tr> </tr> <tr> </tr> <tr> </tr> </table> <input type="submit" value="Corregir" class="dom2" /> </form> </div> </body> </html>