Skip to content

TonyDeStefano/table-sortable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Sortable Table

Sort table columns with javascript

Required Includes

  • jquery
  • font awesome

Usage

Add class 'table-sortable' to any table. Requires correct usage of <thead>, <tbody> and <th> tags.

<script src="table-sortable.js"></script>

<table class="table-sortable">
    <thead>
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Data 1</td>
            <td>Data 2</td>
        </tr>
        <tr>
            <td>Data 3</td>
            <td>Data 4</td>
        </tr>
    </tbody>
</table>

About

Sort a table with javascript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published