gs1-barcode-parser
Version:
The barcode parser is a library for handling the contents of GS1 barcodes.
42 lines (31 loc) • 981 B
HTML
<!--
P. Brockfeld, 2014-12-27
Using JavaScript for detecting keypress events
see
https://github.com/PeterBrockfeld/BarcodeParser
for details.
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Analyze keypress</title>
<meta name="description" content="Keypress analyzer">
<meta name="author" content="P. Brockfeld">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="./css/KeypressDetecting.css" />
<script src="./scripts/KeypressDetecting.js"></script>
</head>
<body>
<h1>Example: analysing keypresses</h1>
<div id="barcodeInputDiv">
<p>
Scan here:
</p>
<form action="" accept-charset="UTF-8" id="barcodeInputForm">
<input type="text" id="barcode">
<input type="button" value="Parse" id="sendbutton">
</form>
</div>
</body>
</html>