Is there a way to make this work using Semantic-ui?
I have this button, which look OK, but the input file never gets called.
<div class="ui icon big button">
<i class="cloud icon"></i>
<input type="file" id="hidde-new-file" style="display: none">
</div>
I found a solution :
Put your
file
input outside thediv
, add an ID to the div, then add this JavaScript :Here is the JSFiddle