infusion / jQuery-webcam

A webcam wrapper plugin for jQuery
http://www.xarg.org/project/jquery-webcam-plugin/
517 stars 273 forks source link

Multiples webcams in the same page #25

Closed jsabino closed 4 years ago

jsabino commented 11 years ago

The plugin can now have multiple instances on the same page. To do this, your instance is no longer in the "window" and is to be returned at the time of the call.

var webcam1 = $("#webcam1").webcam(); var webcam2 = $("#webcam2").webcam();

webcam1.capture(); webcam2.capture();