1
0
Fork 0
gaming.bathynomus.xyz/link.js
2023-01-10 01:08:45 -07:00

6 lines
215 B
JavaScript

let hash = window.location.hash;
if(hash) {
document.querySelectorAll("[name=toggles]").forEach((tog) => {tog.removeAttribute("checked")});
document.querySelector(`${hash}toggle`).setAttribute("checked", "");
}