@adamhholmes
- Just for some seasonal fun, here is how to hide an Element
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
For anyone reading this - it is Bubble joke - do not do this!
But it is not really a joke because I would guess we have all seen similar nonsense in Bubble projects. Apologies @keri - not making light of your situation, you are not alone in having to unpick poor Code vs Bubble implementation decisions. (it goes both ways)
1 Like