I have a simple form that uploads a selected file using Apache Commons Upload 1.2.2. The form has only one field to specify one file name, and 2 buttons, Browse and Submit, like so:
<form action="upload" enctype="multipart/form-data" method="POST">
<input type="file" name="filename">
<input type="submit"/>
</form>
I'd like to be able to make this a one click operation (as soon as the file is selected, it is submitted), rather than 2 button clicks (file select then submit). Any suggestions would be appreciated, TIA.