JSONデータソースからテーブルフッターに動的にデータを入力する必要があります。これがテーブルの構造です
<table id="example_table">
<tfoot id="example_footer">
<tr id="example-footer" style="font-weight:bold">
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</tfoot>
</table>
以下のようにjQueryでappend()を使用する予定です。
$('#example_footer').append( '<tr>...</tr>' );
誰かがtfooterにアクセスし、その内容としてjs変数から値を割り当てる方法を教えてもらえますか