Connections
Collective Connections
// Simple section switcher
function showSection(sectionId) {
document.querySelectorAll(‘div[id$=”home”], div[id$=”messages”], div[id$=”groups”], div[id$=”settings”]’).forEach(function(el) {
el.style.display = ‘none’;
});
document.getElementById(sectionId).style.display = ‘block’;
}