I am building a Rails application that allows users to upload images using jQuery file uploads. I am trying to make it work like dropbox, where when the upload is happening the user can still access different parts of the website.
How would I go about this? Any guidance would be appreciated!
I can offer you just this soluiton. Use
gem 'refile'.It offers you async loading to the storage. You can get answer of the server (file id) and store it in the session. I think this is appropriate way, but it doesn't use jquery file upload.