Capture API
I am looking forward Capture API to become part of Firefox soon. It’s really cool if I have the opportunity to capture my camera and my microphone. function success(data) { var container = document.createElement(“div”); document.body.appendChild(container); for (var i in data) { var img = document.createElement(“img”); img.src = data[i].uri; container.appendChild(img); } } function error(err) { alert(err.message … Read more