Как нацелиться на скрытый html -элемент от JS

document.getElementById(id).style.visibility = "visible"; // show
document.getElementById(id).style.visibility = "hidden"; // hide
Aman Chauhan