Skip to content

Instantly share code, notes, and snippets.

@hackerrahul
Created May 2, 2019 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hackerrahul/6e6e711f1c60686d5665c582833bc213 to your computer and use it in GitHub Desktop.
Save hackerrahul/6e6e711f1c60686d5665c582833bc213 to your computer and use it in GitHub Desktop.
<table id="myTable" class="w3-table-all">
<tr>
<th onclick="w3.sortHTML('#myTable', '.item', 'td:nth-child(1)')" style="cursor:pointer" class='w3-hover-grey'>Country <i class="fa fa-sort" style="font-size:13px;"></i></th>
<th onclick="w3.sortHTML('#myTable', '.item', 'td:nth-child(2)')" style="cursor:pointer" class='w3-hover-grey'>Capital <i class="fa fa-sort" style="font-size:13px;"></i></th>
</tr>
<tr class="item">
<td>India</td>
<td>New Delhi</td>
</tr>
<tr class="item">
<td>China</td>
<td>Beijing</td>
</tr>
<tr class="item">
<td>Morocco</td>
<td>Rabat</td>
</tr>
<tr class="item">
<td>Algeria</td>
<td>Algiers</td>
</tr>
<tr class="item">
<td>United Kingdom</td>
<td>London</td>
</tr>
<tr class="item">
<td>France</td>
<td>Paris</td>
</tr>
<tr class="item">
<td>Zimbabwe</td>
<td>Harare</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment