I want to do is make a function that add data in my table and have a delete function in action column using jquery.
My problem is I'm having trouble putting my input values in the table using jquery.
function Add(){
$("#myTable tbody").append(
"<tr>"+
"<td><input type='text'/></td>"+
"<td><input type='text'/></td>"+
"<td><input type='radio'/></td>"+
"<td><button class='btnDelete>Delete</button></td>"+
"</tr>");
$(".Save").bind("click", Save);
};