I'm using the below code to save The Uploaded file by using Generic Handler & Ajax Request .. It is working fine in all browsers FF, Chrome, Opera, Safari, IE 11, IE 10
But not working on IE 8 nor IE 9 and I know the cause of that is File API is not supported in older IE Version .. But could you help me to handle and fix that in an easy way to work in
IE 8 & IE 9 too without Big Modification or changes in the code ??
HTML Code :
<input type="file" name="uploaderFile" id="uploaderFile" >
<button id="btnSave" type="button" onclick="Save()" >Save</button>
Javascript Code :
function Save() {
var files = $('#uploaderFile').prop('files');
var data = new FormData();
$.each(files, function (key, val ...
Go to the complete details ...