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