มีเดียวิกิ:Gadget-TwoColumnTable.js
หน้าตา
หมายเหตุ: หลังเผยแพร่ คุณอาจต้องล้างแคชเว็บเบราว์เซอร์ของคุณเพื่อดูการเปลี่ยนแปลง
- ไฟร์ฟอกซ์ / ซาฟารี: กด Shift ค้างขณะคลิก Reload หรือกด Ctrl-F5 หรือ Ctrl-R (⌘-R บนแมค)
- กูเกิล โครม: กด Ctrl-Shift-R (⌘-Shift-R บนแมค)
- ไมโครซอฟท์ เอดจ์: กด Ctrl ค้างขณะคลิก Refresh หรือกด Ctrl-F5
document.addEventListener("DOMContentLoaded", function () {
const tableContainer = document.querySelector(".table-container");
const buttons = {
smaller: document.querySelector(".font-smaller"),
larger: document.querySelector(".font-larger"),
nightMode: document.querySelector(".toggle-night-mode"),
};
buttons.smaller.addEventListener("click", function () {
tableContainer.classList.remove("font-larger");
tableContainer.classList.add("font-smaller");
});
buttons.larger.addEventListener("click", function () {
tableContainer.classList.remove("font-smaller");
tableContainer.classList.add("font-larger");
});
buttons.nightMode.addEventListener("click", function () {
document.body.classList.toggle("night-mode");
});
});