Here is the code please check this code.
$.ajax({
url: 'https://cdn.shopify.com/s/files/1/0518/1269/6219/files/sample-3s.mp3',
method: 'GET',
async:true,
crossDomain:true,
headers:{'Content-Type':'audio/mpeg','X-Requested-With':'XMLHttpRequest'},
processData: false,
dataType: 'binary',
xhrFields: {
responseType: 'blob'
},
success: function (data) {
var a = document.createElement('a');
var url = window.URL.createObjectURL(data);
a.href = url;
a.download = 'sample-3s.mp3';
document.body.append(a);
a.click();
a.remove();
window.URL.revokeObjectURL(url);
}
});
});