I want to make the rows of my HTML table display one by one with delay. I am using Flask
Here is my HTML code:
<table class="styled-table">
<tr>
{% for header in headings %}
<th>{{ header }}</th>
{% endfor %}
</tr>
{%for row in data_listed %}
<tr>
{% for cell in row %}
<td>{{ cell }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
I tried to search on Internet but didn't find the answer