Prompt Camera on Mobile
by Dan Wolfe
HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Capture API</title>
</head>
<body>
<H1>HTML5 Capture API</H1>
<input type="file" >
</body>
</html>
JavaScript
$("input").attr("accept", "image/*" );
$("input").attr("capture", "true");