I want the user to upload an image to the server without hitting the submit button.
This is my html form:
<form>
<div class="entry">Upload image<input type="file" formmethod="post" formaction="/avatar_upload"/></div>
</form>
Is it possible to upload the file to the server without using the submit button?