Can I run a jsp page in variable of a javascript function?
My web page looks like this:
I will fill the data in the text boxes but when I click on "Add row" button then a javascript function will be triggered and rows are added dynamically which is as follows.

And the javascript function:
function addRow() {
var table = document.getElementById('my_table'); //html table
var rowCount = table.rows.length; //no. of rows in table
var columnCount = table.rows[0].cells.length; //no. of columns in table
var row = table.insertRow(rowCount); //insert a row
var cell1 = row.insertCell(0); //create a new cell
var element1 = document.createElement("input"); //create a new element
element1.type = "checkbox"; //set the element type
element1.setAttribute('id', 'newCheckbox'); //set the id attribute
element1.setAttribute('checked',true); //set checkbox by default checked
cell1.appendChild(element1); //append element to cell
var cell2 = row.insertCell(1);
var element2 = document.createElement("input");
element2.type = "text";
element2.setAttribute('id', 'newInput'); //set the id attribute
element2.setAttribute('name', 'sl'+rowCount);
element2.setAttribute('style', 'width: 50px');
cell2.appendChild(element2);
var cell3 = row.insertCell(2);
var element3 = document.createElement("input");
element3.type = "textarea";
element3.setAttribute('rows', '4');
element3.setAttribute('cols','40');
element3.setAttribute('id', 'newInput'); //set the id attribute
element3.setAttribute('name', 'discription'+rowCount);
cell3.appendChild(element3);
var cell4 = row.insertCell(3);
var element4 = document.createElement("input");
element4.type = "text";
element4.setAttribute('id', 'newInput'); //set the id attribute
element4.setAttribute('name', 'quantity'+rowCount);
cell4.appendChild(element4);
var cell5 = row.insertCell(4);
var element5 = document.createElement("input");
element5.type = "text";
element5.setAttribute('id', 'newInput'); //set the id attribute
element5.setAttribute('name', 'price'+rowCount);
cell5.appendChild(element5);
var cell6 = row.insertCell(5);
var element6 = document.createElement("input");
element6.type = "text";
element6.setAttribute('id', 'newInput'); //set the id attribute
element6.setAttribute('name', 'CST'+rowCount);
element6.setAttribute('style', 'width: 50px');
cell6.appendChild(element6);
var cell7 = row.insertCell(6);
var element7 = window.href("www.google.co.in");
element7.setAttribute('id', 'vat5'); //set the id attribute
element7.setAttribute('name','tax'+rowCount);
element7.setAttribute('value','vat5');
cell7.appendChild(element7);
}
Whenever I click on "Addrow" function then at the last cell which is "Vat5.5", a jsp page should run and the data present in jsp page should be displayed in the cell which is "Vat5.5". I tried using window.href and window.location but they are navigating to the jsp page and displaying the data. But my requirement is to display the data of jsp page in the cell itself. I dont know whether this will be possible or not.
Edit: I tried using ajax but it's not working properly
<script src="//code.jquery.com/jquery-3.0.0.min.js"></script>
var cell7 = row.insertCell(6);
var element7 = $.ajax({
url: "/SalesPropeller/Admin/Sales/goal.jsp",
success: function() {
alert("success");
},
error: function() {
alert("Your error");
},
});
element7.setAttribute('id', 'vat5'); //set the id attribute
element7.setAttribute('name','tax'+rowCount);
element7.setAttribute('value','vat5');
cell7.appendChild(element7);
}
goal.jsp
<body>
<div id="welcomeDiv" style="display:none;" class="answer_list">WELCOME</div>
</body>

ajax. Are you using any specific javascript framework?GETrequest to fetch data from jsp, on receiving response, you call your originaladdRow(response)function which will render this data. You can use pure javascript for ajax requests, but would be easier to use a library likejQuery