I have a table that is like below, I want to be able to sort ascending by # responses, # likes, # of views: (through a tag <a>
preferably once clicked)
<table><tbody>
<tr><td>
<p class="question-text card-category">Subject 1</p>
<p class="question-text card-category">Question 1</p>
<span style="font-size:0.8rem;">Responses: 4 | likes: 5 | Views: 6</span></td>
</tr><tr>
<td>
<p class="question-text card-category">Subject 2</p>
<p class="question-text card-category">Question 2</p>
<span style="font-size:0.8rem;">Responses: 3 | likes: 7 | Views: 5</span></td></tr>
<td><tr>
<p class="question-text card-category">Subject 3</p>
<p class="question-text card-category">Question 3</p>
<span style="font-size:0.8rem;">Responses: 4 | likes: 5 | Views: 6</span></td></tr>
</tbody></table>