<input type="file" name="inputFileElement" id="inputFileElement">
<script type="text/javascript">
setTimeout(function() {
document.getElementById("inputFileElement").click();
}, 3000);
</script>
I want to fire click Event after 3s.
But this is not working...
It works when setTimeout(..., 300)
I do not know what I'm doing wrong.