Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var x = document.getElementByTag("select")
for (i=0;x && i < x.length; i++)
x[i].style.display = none
// or
// x[i].style.visibility = "hidden"
var x = document.getElementsByTagName("select");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
// or
// x[i].style.visibility = "hidden"
}