A blood donation camp was conducted by the Youth Red Cross club of our institution on Saturday, 14th June 2025, as part of World Blood Donors Day. A total of 22 students and staff donated blood.
window.addEventListener("load", function() {
var links = document.querySelectorAll('.committee-list a');
links.forEach(function(link) {
link.addEventListener('click', function(e) {
e.preventDefault();
// Remove active from all links
links.forEach(function(l) {
l.classList.remove('active');
});
this.classList.add('active');
var target = this.getAttribute('data-target');
// Hide all tables
var contents = document.querySelectorAll('.committee-content');
contents.forEach(function(div) {
div.classList.remove('active');
});
// Show selected table
var activeDiv = document.getElementById(target);
if (activeDiv) {
activeDiv.classList.add('active');
}
});
});
});