I searched this site, I can not find the answer to my problem.
I have an HTML form that can upload multiple images. looks like that
<form enctype="multipart/form-data" method="post">
<p>
<label for="image1">File number 1 to upload:</label>
<input id="image1" type="file" name="file[]" >
</p>
<p>
<label for="image1">File number 1 to upload:</label>
<input id="image1" type="file" name="file[]" >
</p>
//etc etc
</form>
What I want to do is disable each "select file" button after the image has been selected.
If this is not possible, can the success message be displayed in any way after each selection? (there can be up to 20 downloadable buttons.)
thank
shane source
share