Basics
Scan to Web is a web browser that has a barcode scanner.
The app works with HTML elements that contain a cursor.
These elements need to have a
NAME
property.
Typically fields that can contain a cursor are; text, search, number, or a
textarea.
<input name="txttypetext" type="text"/>
<input name="txtsearch" type="search" />
<input name="txtnumber" type="number" />
<textarea name="txtareaBarcodes" rows="5" cols="20" style="height:60px;width:170px;"></textarea>
When a cursor is present in a field, the barcode scan result will appear there.
Otherwise, the app will place the barcode scan result in the first available
HTML INPUT or TEXTAREA
.