I am trying to download a audio file using jquery as shown below and followed the best answers given but that didn't work out for me in my case.
2.Using Jquery to download file
$("#downloadbtn").click(function (e) {
e.preventDefault(); //stop the browser from following
var downloadUrl = "http://mysite:49223/" + $('#<%=downloadfilename.ClientID %>').val();
setTimeout("window.location.assign('" + downloadUrl + "');", 1000);
});
And this is my button:
<button id="downloadbtn" class="btn btn-primary downloadbtn">Download</button>
Now the problem is instead of downloading the file its redirecting to the path.
Can anyone say me how do I do this?