I have an HTML Table and would like to allow the user to click a button to add a new Row, but the new Row will not be added at the end of the table but rather after the last row of input fields.
I've setup a sample JSFiddle at:
I have a New Row button but it's not cloning the last row of inputs (i.e the row where the New Row button is). I need to modify this so that it will insert a new row after the last of these input rows.
Here's the script which I found from an online tutorial:
$(document).ready(function($)
{
// trigger event when button is clicked
$("#button2").click(function()
{
// add new row to table using addTableRow function
addTableRow($("#nextYear"));
// prevent button redirecting to new page
return false;
});
// function to add a new row to a table by cloning the last row and
// incrementing the name and id values by 1 to make them unique
function addTableRow(table)
{
// clone the last row in the table
var $tr = $(table).find("tbody tr:last").clone();
// get the name attribute for the input and select fields
$tr.find("input,select").attr("name", function()
{
// break the field name and it's number into two parts
var parts = this.id.match(/(\D+)(\d+)$/);
// create a unique name for the new field by incrementing
// the number for the previous field by 1
return parts[1] + ++parts[2];
// repeat for id attributes
}).attr("id", function()
{
var parts = this.id.match(/(\D+)(\d+)$/);
return parts[1] + ++parts[2];
});
// append the new row to the table
$(table).find("tbody tr:last").after($tr);
};
});
The new row that is created can have all the input fields empty as the user will start again. Also is there a way to have the New Row button only appear once, and that will always be at the last row of activity inputs. For example initially there will only be one row, but if you click the New Row button a 2nd row will be created below the initial row and the New Row button will now only appear on this newly created row.
Appreciate any help - I'm a Javascript newbie at this stage.
afteror at the very beginning withprepend()? – Anonymous Aug 15 '12 at 1:26