convert sacc table to json

This fiddle converts a table into a json array. The content reference is from https://www.abs.gov.au/AUSSTATS/[email protected]/Previousproducts/3D07918869FD0480CA25744B00153BA8?opendocument# I used this to convert the table into a json array

by ishanbakshi

HTML

<script src="http://lightswitch05.github.io/table-to-json/javascripts/jquery.tabletojson.min.js"></script>
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="testTab">
<thead>
  <tr>
    <th>country</th>
    <th>sacc1</th>
    <th>sacc2</th>
    <th>alpha2</th>
    <th>alpha3</th>
    <th>num</th>
  </tr>
</thead>
<tbody>

<tr valign="top"><td width="35%"><a name="Ad%C3%A9lie%20Land%20(France)"></a>Adélie Land (France)</td><td width="11%">1601</td><td width="11%">1601</td><td width="11%">YA</td><td width="11%">YAJ</td><td width="19%">961</td></tr>

<tr valign="top"><td width="35%">Afghanistan</td><td width="11%">7201</td><td width="11%">7201</td><td width="11%">AF</td><td width="11%">AFG</td><td width="19%">004</td></tr>

<tr valign="top"><td width="35%">Africa</td><td width="11%">0616</td><td width="11%">0616</td><td width="11%">UW</td><td width="11%">UWJ</td><td width="19%">923</td></tr>

<tr valign="top"><td width="35%">Africa, nec</td><td width="11%">0701</td><td width="11%">0701</td><td width="11%">WT</td><td width="11%">WTJ</td><td width="19%">877</td></tr>

<tr valign="top"><td width="35%">Aland Islands</td><td width="11%">2408</td><td width="11%">ni</td><td width="11%">AX</td><td width="11%">ALA</td><td width="19%">248</td></tr>

<tr valign="top"><td width="35%">Albania</td><td width="11%">3201</td><td width="11%">3201</td><td width="11%">AL</td><td width="11%">ALB</td><td width="19%">008</td></tr>

<tr valign="top"><td width="35%">Algeria</td><td width="11%">4101</td><td width="11%">4101</td><td width="11%">DZ</td><td width="11%">DZA</td><td width="19%">012</td></tr>

<tr valign="top"><td width="35%">Americas</td><td width="11%">8000</td><td width="11%">8000</td><td width="11%">XR</td><td width="11%">XRJ</td><td width="19%">952</td></tr>

<tr valign="top"><td width="35%">Americas, nec</td><td width="11%">0702</td><td width="11%">0702</td><td width="11%">WU</td><td width="11%">WUJ</td><td width="19%">875</td></tr>

<tr valign="top"><td...

JavaScript

$('#run').click( function() {
 var table = $('#testTab').tableToJSON();
 console.log(JSON.stringify(table))
 alert(JSON.stringify(table));  
});