function addNewRow(ID) {
var table = $("#" + ID);
var cloneRow = $("tr:eq(1)", table).clone();
//Clean out all textboxes
$("td input:text", cloneRow).removeAttr('value')
$("tbody", table).prepend(cloneRow)
}
$('button').click(function() {
addNewRow("test")
})
table {
width: 100%;
margin-bottom: 20px;
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid #cdcdcd;
}
table th,
table td {
padding: 10px;
text-align: left;
}
SelectValue 1Value 2Value 3
Add row!