Skip to content Skip to sidebar Skip to footer

To Delete Particular Row From Database As Well As Html Table On Corresponding Button Click

i want to delete particular row from my html as well as my database on corresponding button click in that row. so far i am able to delete it just from my html table but i don't kno

Solution 1:

Since your td has a class reference you can use that

$('.delete_td') <!--- references the entire td

You can also use the fact that the column is a parent to a button and retrieve all columns that hold buttons. But I think the code above answers the question

Post a Comment for "To Delete Particular Row From Database As Well As Html Table On Corresponding Button Click"