<table id="fishTable">
<tr class="seperator">
<th> Fingerlings </th>
<th>15</th>
<th>25</th>
<th>50</th>
<th>75</th>
<th>100</th>
<th>150</th>
<th>200</th>
<th>300</th>
<th>500</th>
<th> </th>
<th>B.C.</th>
</tr>
<tr>
<th id="RT">Red Tilapia</th>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td></td>
<td>0</td>
</tr>
</table>
I need to be able to share this one table across multiple pages. I've tried adding it to local storage to keep track of the changes made on each individual page, but the problem is local storage is not shared between users nor devices. Any assistance y'all have would be very much appreciated...
EDIT: I don't believe it is possible (given the brief research I have completed thus far), but if I could have my JS application read/write to a .txt that is stored with it on a web-hosting application, that would work best. I know this can be done in Java, but I don't know how to easily interface the two...
EDIT #2: Ok, so I have a crazy, stupid idea, but I'm not entirely sure it'll work. I found a code snippet that allows me to read the RAW text from a GitHub file - which is exactly what I need! However, the next step is to be able to EDIT the file I'm reading, so that it appears the same everywhere. This is my problem. Is it possible (if so, how?) to write to a file/create new files in a GitHub repo from my external JS program (maybe run THROUGH CodeMirror)?