How to Make Custom Translate?
<div> <p>TES</p> </div> <div> <script> function check(){ document.write("hi " + document.myForm.word.value) } </script> <form name="myForm"> <p>Tos Translator <input type = "text" name = "word" value = ""> <p> <input type = "submit" onClick= "check(); return false"> </p> </p> </div> </form> How to make like googke translate? I want make be : Input: (box Tos Translator [input word][button] /box) Output: (box Result Translate [sentence+tos sentence+tos sentence+tos] /box) I want to make a translate like google translate, and if the text input is filled in "test tus tas tos tus" then if the button is pressed the result is "testos tistos tastos tostos tustos" In essence, the case automatically added the "sentence + tos" please help me to make this is.