i have a form something like:

<form action="">
Name:<input type="text" id="name" onkeypress="if(KeyPress(event)==13)FocusNext(this);" />
Pass:<input type="text" id="Pass" onkeypress="if(KeyPress(event)==13)FocusNext(this);" />
Level:<input type="text" id="Level" disabled="true" />
City:<selectbox><option>istanbul</option><option>ankara</option></selectbox>
...
<button onclick="do();">Submit</button>
</form>

i want use Enter key to jump next enabled input,ignore disableds and find next enabled one, included selectboxes in same area. not in other form's i tried to build one, it works but it have bad performance. and not working properly

my current code is :

function FocusNext(el){
    var p=$(el)[0];
    var tgn='';
    while(p&&tgn.toUpperCase()!='FORM'){
        if(p.parentNode){
            p=p.parentNode;
            tgn=p.nodeName;
        }else{
            return false;
        };
    };
    if(p&&tgn.toUpperCase()=='FORM'){
        for(i=0;i<p.elements.length;i++){
            if(el==p.elements[i]){
                var p2=p.elements[i+1];
                FocusTo(p2);
            };
        };
    }else{
        return true;
    };
};

function FocusTo(el){
    el=$(el);
    if(el){el.focus();try{el.select();}catch(er){};return true};
};

if you have a better solution that would be helpfull for me

link|improve this question

3  
If you start using jQuery - then use it! E.g. why you use p.parentNode, p.elements etc in your code? There is more convenient solutions that jQuery can offer you. And, by the way, using inline event binding is a bad practice. Don't use onkeypress="if(KeyPress(event)==13)FocusNext(this);", use $( 'input, select etc' ).bind() instead. – CoolEsh Apr 20 '11 at 7:58
+1, read jQuery docs on bind() and keyup() – Calum Apr 20 '11 at 8:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.