I'm making a form, and as you know some some types of forms are harder to style than others. For instance <input type="file">
, I'd like to somehow make a fake button so when you click the fake button, it's really clicking the input button.
I've tried:
$("#inputFile").click();
But as you suspect, this didn't work.
Is this possible?