The table is on a repo. The table is blank, but users can upload info into the <td>
cells by a text space and button function.
<input type=“text” id=“one”>
<button onclick=“upload()”>
JavaScript
function upload(){
this.disabled = true
document.getElementById(“targetTDElement”).innerText = document.getElementById(“one”).value
}
By synchronizing, I mean by when user A uploads some information into the table using device A user B can also find that information on the table on device B. Basically like this website. Someone posts a question, and it becomes synchronized and visible on other devices.
How is this done?