So I've been reading javascript tutorials for quite a long time now, and I am looking to put all of it into practice. I want to write a script that will translate text from one html form box to another. Where do I start? I honestly have no idea lol Thanks ahead
What is html form box? Do you mean textarea? What you mean translate? Just create form, read value of the source element and write the value to target element on some event.
Here goes a simple example of the functionality you want. The '//' is used for commenting in Javascript, while <!-- --> is used for commenting in HTML. (it just explains the code) Hope this helps.