/* Toggle between adding and removing the "responsive" class to navigation when the user clicks on the icon */ function menuBars() { var x = document.getElementById("navigation"); if (x.className === "navigation") { x.className += " responsive"; } else { x.className = "navigation"; } }