Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// ** SORTING COMPLETE, ADD NEW ROWS TO BASE OF TABLE ....
for (i=0; i<oldIndex.length; i++)
{
newRow = tableToSort.insertRow();
for (c=0; c<tableToSort.cols; c++)
{
newCell = newRow.insertCell();
newCell.className=tableToSort.rows(oldIndex[i]).cells(c).className;
newCell.innerHTML = tableToSort.rows(oldIndex[i]).cells(c).innerHTML;
}
}