igloogod
05-28-2007, 04:38 AM
Hello,
I need to disable the Enter Key to prevent it from Submitting the Form, on all form elements except one specific textbox that is mult-line text field.
Here is what DOES work to disable enter key, but it disables it on the specific field as well. The field is called narrativetxt.
onkeypress="{ var key; if(window.event) key = window.event.keyCode; else key = e.which; if(key == 13) return false; else return true;}"
Thanks
I need to disable the Enter Key to prevent it from Submitting the Form, on all form elements except one specific textbox that is mult-line text field.
Here is what DOES work to disable enter key, but it disables it on the specific field as well. The field is called narrativetxt.
onkeypress="{ var key; if(window.event) key = window.event.keyCode; else key = e.which; if(key == 13) return false; else return true;}"
Thanks