I want to open a webcam using JavaScript/jQuery.
I am able to open it in Chrome and Mozilla. But navigator.GetUserMedia
is not working for the IE browser. Is it possible to do this with IE using JavaScript or jQuery?
I want to open a webcam using JavaScript/jQuery.
I am able to open it in Chrome and Mozilla. But navigator.GetUserMedia
is not working for the IE browser. Is it possible to do this with IE using JavaScript or jQuery?
Yes IE 11 and below currently doesn't support getUserMedia ,but there is a polyfill available
http://caniuse./#search=getuserMedia
This is the only polyfill I can find, and it uses a flash fallback:
https://github./addyosmani/getUserMedia.js
You should use a polyfill. Search for it on the internet
You could try this :
https://github./addyosmani/getUserMedia.js
https://github./jhuckaby/webcamjs