(function($) {
   $.fn.preventTab = function(options) {

       return this.each(function(){
           $(this).bind('keydown', function(e){
               if(e.which == 9){
                   return false;
               }
           });
       });
   };
})(jQuery);

