Working with IE-10/11
I am downloading a file in JQuery
Common.ajax({
dataType: 'text',
type: 'GET',
url: link,
data: {'_CONV_ID': convId},
success: function (data) {
alert("File DOwnloaded" + data);
//How to say Browser to open dialog to open, save cancel the file download
},
error: function (result) {
$.unblockUI();
$.log(result.responseText);
}
});
Alert message successfully getting displayed on screen but dialog to save or open file does not appear. Anyone suggest what to write in success to get that?