Files
BetterSEQTA-Plus/src/plugins/built-in/animatedBackground/utils/RemoveBackground.ts
T
2025-05-05 18:04:10 +10:00

7 lines
228 B
TypeScript

export function RemoveBackground() {
const backgrounds = document.getElementsByClassName("bg");
// Convert HTMLCollection to Array and remove each element
Array.from(backgrounds).forEach((element) => element.remove());
}