So, I have a simple image upload form that I leave button disabled. I wanted to, when I select a photo or file in the input file, the enable button!
<div id="botoes" class="clearfix">
<button id="btnEnvia" name="btnEnvia" class="save abre_load" disabled="true">
SALVAR
</button>
</div>
<div id="campos" class="clearfix">
<label>SELECIONAR FOTOS</label>
<input id="img" type="file" name="img[]" multiple required/>
</div>