テーブルの横に動的に行を作成しました
var index = 1;
$("#add_field").click(function(){
var new_field = '<tr><th style="text-align: left;">Customer '+index+'</th><td><input type="text" id="customer'+index+'" name="customer'+index+'" maxlength="50"></td><th style="text-align: left;">Phone</th><td><input type="text" id="customerphone'+index+'" name="customerphone'+index+'" maxlength="14"></td><th style="text-align: left;">Email</th><td><input type="text" id="customeremail'+index+'" name="customeremail'+index+'" maxlength="100"></td></tr>';
$("#customerFormTable").append(new_field); });
html
<div id="add_field">Click here to add more rows </div>
削除を作成するにはどうすればよいですか-作成した最後の行を削除するには
<div id="delete_row">Click here to delete last row created </div>
$("#delete_row").click(function(){ ??????