-3

I would like to combine the following

this table sorter

and this fusion table to html table

But after 3 days of working on it I've decided to may be best to ask for help.

Many thanks in advance.

Cœur
  • 37,241
  • 25
  • 195
  • 267

1 Answers1

0
  1. include the tablesorter script.
  2. Add this to the <table> tag:

    <table id="myTable" class="tablesorter">
    
  3. Add this to the code after the table is populated:

       $("#myTable").tablesorter();
    

working example

geocodezip
  • 158,664
  • 13
  • 220
  • 245