Is it possible to include "drag and drop'd" files in a form submission? There are plenty of options for uploading asynchronously.
Is it possible to capture the file data and include it in a form field?
I'm using Rails as my server so ideally the data for the image would fit in to a form like follows:
<form multipart='multipart' >
  <select name='files[type_id]'>
     ...
     ...
  </select>
  <!-- FILE DATA ?  -->
  <div id="file_drop_spot">
  </div>
</form>
 
     
    