var PostSection = document.getElementById('PostSection'); var PostBTN = document.getElementById("PostBTN"); var PostClose = document.getElementsByClassName("PostClose")[0]; PostBTN.onclick = function() { PostSection.style.display = "block"; } PostClose.onclick = function() { PostSection.style.display = "none"; } window.onclick = function(event) { if (event.target == PostSection) { PostSection.style.display = "none"; } }