1
0
Fork 0
gaming.bathynomus.xyz/link.js

6 lines
215 B
JavaScript
Raw Normal View History

2023-01-10 08:08:45 +00:00
let hash = window.location.hash;
if(hash) {
document.querySelectorAll("[name=toggles]").forEach((tog) => {tog.removeAttribute("checked")});
document.querySelector(`${hash}toggle`).setAttribute("checked", "");
}