Skip to content

Student Took Online Course While in Labor

Sitting for an exam, whether online or in-person, can be difficult. Tommitrise Collins from Macon, Georgia has a tough decision to make when she found herself in labor at the time of a scheduled online exam. She impressed her family, friends, and hospital staff when she opted to take her psychology exam on her laptop while in the delivery ward. She ended up with a passing grade and a new baby girl.  Talk about dedication!

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });