Our Listings

#myDIV { display: none; width: 100%; padding: 5px 0; text-align: left; background-color: white; margin-top: 5px; } .ezm_sbox_container { background-color: #f1f1f1; padding: 20px; margin: 0; } document.addEventListener(“DOMContentLoaded”, function() { var button = document.getElementById(“myButton”); button.addEventListener(“click”, function() { var div = document.getElementById(“myDIV”); div.style.display = (div.style.display === “block”) ? “none” : “block”; }); });