I try more time to delete record by jquery but no responding meaning nothing happen
my code as following
$(function () {
$("#btn").click(function ()
{
var x = $("#txt1").val();
var y = $("#txt2").val();
var z = $("#txt3").val();
$("#tb").append(" " + x + " " + y + " " + z + " ");
});
$("#tb").on("click", ".c", function () {
$(this).parent().parent().remove();
});
});
ID
Name
Country
| ID | Name | Country | Edit |
what remaining in my code or wrong to button delete work
ahmed salahPosted Jul 20, 2016, 3:18 PM