All Projects → Glideh → Jquery Code Scanner

Glideh / Jquery Code Scanner

Lightweight handheld code scanner detector

Projects that are alternatives of or similar to Jquery Code Scanner

Tableexport
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files.
Stars: ✭ 781 (+2903.85%)
Mutual labels:  jquery
Declarativ
A declarative HTML rendering library that is definitely not JSX.
Stars: ✭ 16 (-38.46%)
Mutual labels:  jquery
Printthis
jQuery printing plugin; print specific elements on a page
Stars: ✭ 902 (+3369.23%)
Mutual labels:  jquery
Trip.js
🚀 Trip.js is a plugin that can help you customize a tutorial trip easily with more flexibilities.
Stars: ✭ 789 (+2934.62%)
Mutual labels:  jquery
Jquery Powertip
💬 A jQuery plugin that creates hover tooltips.
Stars: ✭ 822 (+3061.54%)
Mutual labels:  jquery
Small Color Picker
jQuery color picker and button styles
Stars: ✭ 16 (-38.46%)
Mutual labels:  jquery
Jquery.print
Easy to use, Element Printing Plugin for jQuery
Stars: ✭ 772 (+2869.23%)
Mutual labels:  jquery
Inputtounsi
A jQuery plugin for entering and validating Tunisian users' data or any other data. It is made very easy to use and easier to customize
Stars: ✭ 25 (-3.85%)
Mutual labels:  jquery
Festivals
A Grails website that provides information about festivals
Stars: ✭ 5 (-80.77%)
Mutual labels:  jquery
Easy Jquery
EASYJQUERY-可能是最适合你的 jQuery 课程
Stars: ✭ 19 (-26.92%)
Mutual labels:  jquery
Hospital Management System
"Health Care hospital" Management System is designed for manage details about hospital patient,employee and rooms(10). Designed by using HTML / CSS / JS / JQUERY/ PHP (procedural php) / MYSQL.
Stars: ✭ 5 (-80.77%)
Mutual labels:  jquery
Jquery Rslitegrid
Input tabular data with your keyboard
Stars: ✭ 5 (-80.77%)
Mutual labels:  jquery
Slide Zilla
Full page slides scroller that works on all screen sizes, no matter the content length
Stars: ✭ 18 (-30.77%)
Mutual labels:  jquery
Jquery Dropdown
Bootstrap-style dropdowns with some added features and no dependencies.
Stars: ✭ 788 (+2930.77%)
Mutual labels:  jquery
Jquery Datetextentry
jQuery plugin providing a widget for date entry (not a date picker)
Stars: ✭ 19 (-26.92%)
Mutual labels:  jquery
Must Watch Javascript
A useful list of must-watch talks about JavaScript
Stars: ✭ 6,545 (+25073.08%)
Mutual labels:  jquery
Push State
Turn static web sites into dynamic web apps.
Stars: ✭ 16 (-38.46%)
Mutual labels:  jquery
Ax5ui Uploader
jQuery file uploader, HTML5(IE9+, FF, Chrome, Safari) - http://ax5.io/ax5ui-uploader/
Stars: ✭ 25 (-3.85%)
Mutual labels:  jquery
Filemanager
An open-source file manager released under MIT license. Up-to-date for PHP connector. This package is DEPRECATED. Now, please use RichFileManager available at : https://github.com/servocoder/RichFilemanager.
Stars: ✭ 926 (+3461.54%)
Mutual labels:  jquery
Django Photoblog
Photographer portfolio website powered by Django Framework. Features photo gallery with infinite scrolling, tagging, thumbnail generation and CMS for creating pages. Configured for Heroku and S3.
Stars: ✭ 19 (-26.92%)
Mutual labels:  jquery

jQuery Code Scanner

The aim here is to be able to get a scanned code from anywhere in a web page.

You can try the plugin and see if it works with your code reader

How it works

A handheld scanner is exactly like a keyboard that will quickly enter the sequence of any scanned code.
The trick is rely on the speed of entry to suspect a scan.

Installation

$ bower install jquery-code-scanner

Usage

Include the tool

<script src="js/jquery.min.js"></script>
<script src="js/jquery-code-scanner.js"></script>
<!-- ... -->
<input type="text" id="code-scan">

Initialize an input

$('#code-scan').codeScanner();

This input will receive any scanned code

Options

  • minEntryChars default: 8
    Minimum characters entered to be considered as a code reader

  • maxEntryTime default: 100
    Maximum time (in millisecond) to enter the characters to be considered as a code reader

$('#code-scan').codeScanner({
    maxEntryTime: 500, // milliseconds
    minEntryChars: 15  // characters
});

In this example, if 15 characters are not entered within 500ms, the string will not be taken as a scanned code

  • onScan default: Function setting the code into the input
    This function will be called when a code is scanned
$('#code-scan').codeScanner({
    onScan: function ($element, code) {
        console.log(code);
    }
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].