What is the best way to hide an element using A-Frame?
Do I need to remove the element from the DOM?
var el = document.querySelector("#yourElementId"); el.setAttribute("visible",false);