Allow user to navigate while file upload is in progress

318 Views Asked by At

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!

1

There are 1 best solutions below

2
Alex Antonov On

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.