/*! * tabcomplete * http://github.com/erming/tabcomplete * v1.5.3 */ (function($) { var keys = { backspace: 8, tab: 9, up: 38, down: 40 }; $.tabcomplete = {}; $.tabcomplete.defaultOptions = { after: "", arrowKeys: false, // Allow the use of and keys to iterate hint: "placeholder", // "placeholder", "select", false match: match, caseSensitive: false, minLength: 1, wrapInput: true }; $.fn.tab = // Alias $.fn.tabcomplete = function(args, options) { if (this.length > 1) { return this.each(function() { $(this).tabcomplete(args, options); }); } // Only enable the plugin on and