select the next inputbox [ 1143 views ]
Goal: jump to the next inputbox
there is a simple jumper function:
function nextInput(){
var a = $("input[type!=hidden]"),
i = a.index(document.activeElement)+1,
b = a[i].focus();
};
jQuery is in the background!


