how to convert td into button in jquery code example
Example 1: add edit delete from table using jquery
$(function(){
//Add, Save, Edit and Delete functions code
$(".btnEdit").bind("click", Edit);
$(".btnDelete").bind("click", Delete);
$("#btnAdd").bind("click", Add);
});
Example 2: add edit delete from table using jquery
function Delete(){
var par = $(this).parent().parent(); //tr
par.remove();
};