I have a form for translating text and would like to have the form submit as the user enters characters. Similar to google translate.
Here is code sample:
<form id="trans" method="post" action="prevedi.php">
<textarea id="prevedi" name="prevedi" style="margin: 2px; height: 137px; width: 380px;"></textarea>
<textarea id="prevod" disabled="disabled" name="prevod" style="margin: 2px; height: 137px; width: 380px; border: 0px;" readonly></textarea>
<input name="translate" type="submit" value="Translate"/>
Any idea, how to do this?