Answers for "remove tr to table jquery"

0

remove tr in table jquery

$("#MyTable").on("click", "#DeleteButton", function() {
   $(this).closest("tr").remove();
});
Posted by: Guest on April-11-2020
0

add edit delete from table using jquery

function Save(){
	var par = $(this).parent().parent(); //tr
	var tdName = par.children("td:nth-child(1)");
	var tdPhone = par.children("td:nth-child(2)");
	var tdEmail = par.children("td:nth-child(3)");
	var tdButtons = par.children("td:nth-child(4)");

	tdName.html(tdName.children("input[type=text]").val());
	tdPhone.html(tdPhone.children("input[type=text]").val());
	tdEmail.html(tdEmail.children("input[type=text]").val());
	tdButtons.html("<img src='images/delete.png' class='btnDelete'/><img src='images/pencil.png' class='btnEdit'/>");

	$(".btnEdit").bind("click", Edit);
	$(".btnDelete").bind("click", Delete);
};
Posted by: Guest on September-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language