SyntaxFix
Write A Post
Hire A Developer
Questions
Working example in jQuery 1.9:
$('body').on('keydown', '#textbox', function(e) { if (e.which == 9) { e.preventDefault(); // do your code } });