| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/cosmicindrani.com/wp-content/themes/indrani/js/ |
Upload File : |
document.addEventListener("DOMContentLoaded", () => {
const members = document.querySelectorAll(".team-member img"); // Select all team member images
const teamText = document.getElementById("team-text"); // Text content element
const teamName = document.getElementById("team-name"); // Name element
const teamTitle = document.getElementById("team-title"); // Title <span> element inside the name
// Add click event listeners to each member
members.forEach((member) => {
member.addEventListener("click", function () {
// Remove 'active' class from all members
members.forEach((img) => img.classList.remove("active"));
// Add 'active' class to the clicked member
this.classList.add("active");
// Get data attributes from the parent `.team-member` element
const parent = this.parentElement;
const text = parent.getAttribute("data-text");
const name = parent.getAttribute("data-name");
const title = parent.getAttribute("data-title");
// Update the right section content
teamText.textContent = text;
teamName.firstChild.textContent = `${name} - `; // Update the name (before the span)
teamTitle.textContent = title; // Update only the title inside the <span>
});
});
});