is there a cross-browser solution to disable \'tab\' on a input type=\'text\' ?
Pressing \'tab\' moves you to the
a non jQuery implementation would be a bit like this -
HTML would be
and JS something like below
function stopTab( e ) { var evt = e || window.event if ( evt.keyCode === 9 ) { return false } }