6
So I have a simple image upload form that I leave disabled button. Wanted that when I select a photo or file in the input file, the button enable!
<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>
Because I solved it, I put the script below other scripts in the footer, it was probably some other Jquery import that was bugging me!
– Jaider Master Info