Hi there,
I\\'ve made a form but when i hit the enter button nothing happens.. Do you know if there\\'s a script which can do a submit when you hit the enter/return key
Thanx
what happens when you hit the enter key is up to the browser, but most will use the form action tag. include a submit button but also in the action tag include the url for the next page.
There is also the JavaScript "onKeypress" event handler. It's easy to implement and you can assign any key to any "onKeypress" event.
Here's a link that discusses it in detail: http://www.devguru.com/Technologies/ecmascript/quickref/evhan_onKeyPress.html
Hope that helps, Adam.
Thanx!!!