I have a form on one of my ezpages. I would like to disable the "enter key" so the form isn't submitted to early as there are a lot of text boxes. can anyone answer these two questions (or one)
1.) Which file can I edit that will allow me to do this? (ezpage file? under templates? etc)
2.) Anyone know some good code to allow this to happen? I found this code, will this work?
the link to the page is here...<script type="text/javascript">
function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
}
document.onkeypress = stopRKey;
</script>
http://www.bendisskin.com/index.php?...age=page&id=26
Thanks!



