Add TabFocus (for die-hard Twitter users) plugin

This commit is contained in:
Craig Andrews
2010-02-25 15:34:01 -05:00
parent 5acbdfbdb3
commit eb724bfdc8
2 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
jQuery(function($){
$('#notice_data-text').bind('keydown',function(e){
if (e.which==9) {
setTimeout(function(){ $('#notice_action-submit').focus(); },15);
}
});
});