Demo

Imię Nazwisko Wiek Suma Rabat Data
Peter Parker 28 $9.99 20% Jul 6, 2006 8:14 AM
John Hood 33 $19.99 25% Dec 10, 2002 5:14 AM

Javascript

$(document).ready(function() { 
     
    // Wywołanie wtyczki tablesorter 
    $("table").tablesorter({ 
        // Definicja własnej funkcji wydobywania tekstu 
        textExtraction: function(node) { 
            // Wydobycie danych z kodu HTML i zwrócenie ich 
            return node.childNodes[0].childNodes[0].innerHTML; 
        } 
    }); 
}); 

HTML

<table class="tablesorter" cellspacing="1">             
    <thead>> 
        <tr> 
            <th>imię</th> 
            <th>nazwisko</th> 
            <th>age</th> 
            <th>suma</th> 
            <th>rabat</th> 
            <th>data</th> 
        </tr> 
    </thead> 
    <tbody> 
        <tr> 
            <td><strong><em>peter</em></strong></td> 
            <td><strong><em>parker</em></strong></td> 
            <td><strong><em>28</em></strong></td> 
            <td><strong><em>$9.99</em></strong></td> 
            <td><strong><em>20%</em></strong></td> 
            <td><strong><em>jul 6, 2006 8:14 am</em></strong></td> 
        </tr> 
        <tr> 
            <td><strong><em>john</em></strong></td> 
            <td><strong><em>hood</em></strong></td> 
            <td><strong><em>33</em></strong></td> 
            <td><strong><em>$19.99</em></strong></td> 
            <td><strong><em>25%</em></strong></td> 
            <td><strong><em>dec 10, 2002 5:14 am</em></strong></td> 
        </tr> 
    </tbody> 
</table>