I have a pretty standard form to submit an image:
<form enctype="multipart/form-data" class="form-horizontal" role="form" method="POST">
<input id="image" name="image" type="file"/>
</form>
I want to be able to drag an image to an area so it will selected as the input.
I have researched on the internet how to do such simple task but I only get overdone plug-ins that use AJAX which sadly is not an option for this form. Anyone knows how to do this?