blob: 36c26481ed5b51b0e9ea8feb345f747d983bc372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//table id pendingTable, ongoingTable, completedTable
function show(tableId) {
let tables = document.getElementById("myMission").getElementsByTagName("table");
tables[tableId].classList.add("show_table");
for (i = 0; i < tables.length; i++) {
if (tables[i].id !== tableId) {
tables[i].classList.remove("show_table");
}
}
}
|