I wanted to download a file in the ajax success call with out opening in a new tab/window.
File types would contain images(jpg, png) and all other doc extensions like doc, docx, pdf, ppt, pptx etc
Tried options with window.open and it is always opening in a new window.
$.ajax({
type: "GET",
url: "url",
success: function(result) {
window.open(download_url);
});