Hi, I got a form, and want something to happen when an "input" field is changed. I got the function done correctly working, but the change only happens when cursor leaves the field, or comes in it. (much like setfocus...) What to do? here's the code: <script type="text/javascript"> function someS() { alert("some"); } </script> <form action="some.php" method="post"> type: <input type="text" name="s" id="s" onchange="someS();"> <br> next: <input type="text" name="d" id="d" > </form> What I want is to execute the function as the user types... Thanks for help