readme_patch_240528a.txt

----
1. Reason for Change

Previously, when you wanted to change the theme (color scheme, etc.), you had to rewrite the contents of mytblsorter1.js. With this patch, you don't have to make that change.

----
2. Step

(1) Use mytblsorter1b.js instead of previous mytblsorter1.js .
(2) Replace the script file name in the relevant line of your html source:
<script type="text/javascript" src="../js/jq_js/mytblsorter1b.js"></script>

----
3. How to change the theme

(1) Select a theme (e.g. grey, default, etc.) from the css folder.
(Sample: Visit https://mottie.github.io/tablesorter/docs/index.html --> "Theming" --> "See all available themes" --> https://mottie.github.io/tablesorter/docs/themes.html)

(2) Replace the theme name "blue" (below) of css file name to another.
<link rel="stylesheet" href="./css/theme.blue.min.css">

(3) Add the second parameter at the line calling tblsorter1(). Replace 'blue' below to your theme.
  tblsorter1( tblid, 'blue' );

(4) Replace other all "blue" of ".tablesorter-blue" below to your theme.

.tablesorter-blue tbody > tr.hover > td,
.tablesorter-blue tbody > tr:hover > td,
:
:
.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {

----

