Something like this, just place in body

<pre>

<script language="_javascript_">
document.>

function checkKeycode(e) {
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
if(keycode == 13){
keycode=9;
}
}
</script>

</pre>


Ben

On Jun 14, 2006, at 3:07 PM, Fogelson, Steve wrote:

I have a form with an array type format (2 columns by X number of rows). The first column is for entering the quantity. The second column if a description, but has a link. And I have a submit button at the bottom.

 

Tabbing goes from the quantity field to the link and then to the next quantity field and so forth.

 

My customer wants to just hit enter to get to the next quantity field, but enter submits the form.

 

Is there a way to accomplish what they are requesting?

 

Thanks in advance for any ideas,

 

Steve Fogelson

Internet Commerce Solutions

________________________________________________________________________
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


________________________________________________________________________
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Reply via email to