Qasim Khokhar
Qasim Khokhar

Reputation: 1052

How to fetch Finger Print using javascript(client side)

i am trying to access my usb biometric device, is there any way to fetch finger print from client side using javascript. my device is (U.are.U 4500).

Upvotes: 6

Views: 5502

Answers (1)

Chris Rutherfurd
Chris Rutherfurd

Reputation: 1687

You can't access a USB peripheral directly through javascript or HTML as it is not included in any standard API. If there is a signed java applet available for it which exposes certain events and methods you could interface the javascript with the java applet to achieve some level of interaction but there is no way to achieve it through a strictly javascript/html manner.

Upvotes: 5

Related Questions