I have used the following code to generate a dynamic table. Now I want to store those values in array so I can access and process them. How to do that?
P.S- Sorry for newbie question. I am just starting out java script.
$(document).ready(function(){
$(".add-row").click(function(){
var iorder = $("#iorder").val();
var idate = $("#idate").val();
var iamount = $("#iamount").val();
var markup = "<tr><td><input type='checkbox' name='record'></td><td>" + iorder + "</td><td>" + idate + "</td><td>" + iamount + "</td></tr>";
$("table tbody").append(markup);
});