The following is my code
Script
$(document).ready(function(){
$(\'#click\').click(function(){
$(\'#table\').append(\'&a
-
2021-02-19 04:44
You can remove the last tr from the table using the table class on button click.
$('#remove').on("click", function(){
$('.tbl tr:last').remove();
});
|