Jquery File Upload - Not sending headers in IE9
问题 I'm using jQuery Fileupload to upload files. Its not sending headers that I set to the server. Why is the Authorization header missing only in IE but passed in chrome? Here is the code: upload_photo: function(){ var url = '/api/v1/upload'; $('#photoupload').fileupload({ url: url, dataType: 'json', paramName: 'uploadFile', beforeSend: function ( xhr ) { setHeader(xhr); $("#check_progress").html('true'); }, done: function (e, responseJSON) { var id = responseJSON.result.id; url = responseJSON