Reputation: 792
We are developing mobile web application(Android,Iphone) using MVC 3,HTML 5,Javascript,Jquery,Jquery mobile.I want to use the camera to capture images.In HTML 5 getUserMedia() is using for the image capture.But it is not supporting in many other browsers.So we cant use this option.Any other option is there to capture the images in mobile web application?
Upvotes: 0
Views: 3292
Reputation: 1558
What about this:
<input type="file" accept="image/*" capture="camera">
Upvotes: 1