Programming Tips - jQuery: append a populated row to a table

Date: 2024dec12 Platform: web Library: jQuery Keywords: add Q. jQuery: append a populated row to a table A. This way is my favourite:
$('#mytable tr').last().after('<tr><td>HELLO</td></tr>');
There is a native javaScript insertRow() function but it only inserts a empty row. Then you need to put some content in it.