Im trying to get webcam on my webpage.
my jquery code:
$("#camera").webcam({
width: 320,
height: 240,
mode: "callback",
swffile: "webcam/jscam.swf",
});
my body code for the webcam:
<div id="camera"></div>
im using this plugin:
http://www.xarg.org/project/jquery-webcam-plugin/
but on my page i dont see anything. it's empty.
someone know what im missing to make the webcam work.
Thanks.