How can I auto trigger file input? ie. in the link below I want to trigger upload button on load
DEMO
Upload
Change your JS code like below.
$("#test1 button").click(function() { $("#test").trigger('click'); });
Working Demo