The following is an example how to do what you want in jQuery.

$('#divid').bind('keydown', function(e) {
        if (e.which == 13) {
             $('#secondid').focus();
             return false;
        }
});

Thanks & Regards,
Dhruva Sagar.


Jonathan Swift<http://www.brainyquote.com/quotes/authors/j/jonathan_swift.html>
- "May you live every day of your life."

On Wed, Oct 28, 2009 at 6:30 PM, Atilio Camargo Moreira <atilio...@gmail.com
> wrote:

>
> I´m using APEX - Oracle App Express
> How can I make when you press Enter,
> the focus go to the next item, but without submission?
> If Jquery, jscript?
>

Reply via email to