Y'all probably already knew this, but I just put it together that SVGs don't have a hidden property in JS.
```js
myDiv.hidden = true // works, hides it
mySVG.hidden = true // no worky, does nothing
```
Excuse me while I refactor a bunch of code....
20 days ago