I have the following input:
<input type="file" accept="image/*" capture="camera" style="display:none" id="capturar">
I would like to load the page and open the field to select the file. I tried the following in jquery:
$(document).ready(function(e) {
$("#capturar").click();
});
But without result.
Any help?