jQuery Scanner Detection is a small plugin to detect when user use a scanner (barcode, QR Code...) instead of a keyboard, and call specific callbacks.
To initialize the detection, 2 ways:
$(selector).scannerDetection(); // Initialize with default options
$(selector).scannerDetection({...}); // Initialize with an object that contains options
$(selector).scannerDetection(function(){...}); // Initialize with a function that is onComplete callback
To simulate a scanning after initialisation:
$(selector).scannerDetection('scanned string');
To disable the detection (deinitialize):
$(selector).scannerDetection(false);
See a detailed tutorial with presets for different scanner models and first steps to take when starting here.
Callback after detection of a successful scanning
Callback after detection of a unsuccessful scanning (scanned string in parameter)
Callback after receiving and processing a char (scanned char in parameter)
Callback after detecting a keyDown (key char in parameter) - in contrast to onReceive, this fires for non-character keys like tab, arrows, etc. too!
Callback after detection of a successfull scan while the scan button was pressed and held down. This can only be used if the scan button behaves as a key itself (see scanButtonKeyCode). This long press event can be used to add a secondary action. For example, if the primary action is to count some items with barcodes (e.g. products at goods-in), it is comes very handy if a number pad pops up on the screen when the scan button is held. Large number can then be easily typed it instead of scanning fifty times in a row. Note: this option requires scanButtonKeyCode to be set to a valid key code!
Default: 100
Wait duration (ms) after keypress event to check if scanning is finished
Default: 30
Average time (ms) between 2 chars. Used to do difference between keyboard typing and scanning
Default: 6
Minimum length for a scanning
Default: [9,13]
Chars to remove and means end of scanning
Default: []
Chars to remove and means start of scanning
Default: false
Ignore scans if the currently focused element matches this selector. Per example, if you set this option to 'input', scanner detection will be disable if an input is focused, when the scan occurs.
Default: null
Key code of the scanner hardware button (if the scanner button a acts as a key itself). Knowing this key code is important, because it is not part of the scanned code and must be ignored. On the other hand, knowing it can be usefull: pressing the button multiple times fast normally results just in one scan, but you still could count the number of times pressed, allowing the user to input quantities this way (typical use case would be counting product at goods-in).
Default: 3
You can let the user perform some special action by pressing and holding the scan button. In this case the button will issue multiple keydown events. This parameter sets, how many sequential events should be interpreted as holding the button down.
Default: false
Stop immediate propagation on keypress event
Default: false
Prevent default action on keypress event
All callbacks are of type function and can also be bound as event listeners.
Like this, you can add multiple callbacks for each event.
Of course, events exist only if plugin is initialized on selector.
$(selector)
.bind('scannerDetectionComplete',function(e,data){...})
.bind('scannerDetectionError',function(e,data){...})
.bind('scannerDetectionReceive',function(e,data){...})
Callback after detection of a successful scanning
Event data: {string: "scanned string"}
Callback after detection of a unsuccessful scanning
Event data: {string: "scanned string"}
Callback after receive and process a char
Event data: {evt: {original keydown event}}
Callback after detecting a keyDown - in contrast to onReceive, this fires for non-character keys like tab, arrows, etc. too! Event data: {evt: {original keydown event}}
jQuery > 1.4.4. Note, that some odd side effects may occur before version 1.6, if your event handlers rely on using the event object (for example calling e.which from within the onKeyDetect handler).
On old IE browser (IE<9), Date.now()
and Array.indexOf()
are not implemented.
If you plan to use this plugin on these browsers, please add jquery.scannerdetection.compatibility.js file before the plugin.