views:

41

answers:

1

Hello,

I'm looking for a simple jquery plugin to upload a file without FLASH. For Ruby on Rails.

Single file upload progress bar indicator and all the bits have been uploaded.

A: 

jQuery is a javascript framework.

File Upload is an HTML element: <input type="file" />

You have to process the file upload outside of client side technologies, in RoR for your case.

JavaScript and CSS can help alter the look and feel and the interaction to some extent.

See some plugins here: http://www.webdeveloperjuice.com/2010/02/13/7-trusted-ajax-file-upload-plugins-using-jquery/

Moin Zaman