Home Ordering tables with jquery
Post
Cancel

Ordering tables with jquery

Last spring I was organizing official Finnish ice climbing championships www.finice.com . We were a really small team behind this production. The problem for us was how to deliver real time results to the audience, and for the media broadcast company, which was filming and commenting the competition.
I wrote a small script to order the results, which I just quickly entered to the html page during the competition.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function sortTable(table_id, sortColumn){
    var tableData = document.getElementById(table_id).getElementsByTagName('tbody').item(0);
    var rowData = tableData.getElementsByTagName('tr');
    for(var i = 0; i < rowData.length - 1; i++){
        for(var j = 0; j < rowData.length - (i + 1); j++){
            if(Number(rowData.item(j).getElementsByTagName('td').item(sortColumn).innerHTML.replace(/[^0-9\\.]+/g, '')) < Number(rowData.item(j+1).getElementsByTagName('td').item(sortColumn).innerHTML.replace(/[^0-9\\.]+/g, ''))){
                tableData.insertBefore(rowData.item(j+1),rowData.item(j));
            }
        }
    }
    tableData = document.getElementById(table_id).getElementsByTagName('tbody').item(0);
    rowData = tableData.getElementsByTagName('tr');
    for(var i = 0; i <= rowData.length - 1; i++){
        //console.log(rowData.item(i).getElementsByTagName('td').item(0));
        rowData.item(i).getElementsByTagName('td').item(0).innerHTML = i+1;
    }
}

The main idea was to call this sorttable during the competition, and just remove it afterwards, when I had written the official results to the page.
Calling the table sorter was pretty easy. Just sort the document, on document.ready.

1
2
3
4
    $( document ).ready(function() {
     sortTable('men', 4);
     sortTable('women', 4);
    });
This post is licensed under CC BY 4.0 by the author.

OpenSSL s_client recipes

Building a router for LAN party with pfSense and Steam cache

Comments powered by Disqus.