I have implemented blueimp jquery file uploader and is running fine on all browsers except IE6 :(.
It is not handling JSON response from the uploads_controller#create method. It gives JSON file with response for download.
Please help me to sort this issue..
Doing it following way resoles the issue
content_type = request.env['HTTP_ACCEPT'].split(',').include?("application/json") ? "application/json" : "text/html"