Skip to content

Online College: No longer just for “non-traditional” students

Since its introduction, online college education has been touted as an opportunity and solution for nontraditional college students—older students, students who may have put their college education on hold, or others outside the under-25 first-time college student demographic. However, as discussed in this article from US News (http://www.usnews.com/education/online-education/articles/2015/10/07/online-education-not-just-for-nontraditional-students-anymore ),  the number of students in that “traditional” group has been growing. Their reasons for pursuing an online degree may vary, but the flexibility and potential to save money are some of the most appealing features of these programs.

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'); } }); }); });