AJAX call back to download file by browser
When user clicks the button, there is ajax calls to server. The server returns a text file.
I would like browser to download the file automatically.
.jsp button
Generate I-618
.js file - when button is click
$("#btn_load").click(function(e) {
event.preventDefault();
form = $('#bookList');
var post_url = form.attr("action");
let form_data = form.serialize();
$.ajax({
url: post_url,
type: "POST",...