File: D:/HostingSpaces/fire-tech/fire-tech.nl/resources/assets/js/site/courseFormHandler.js
/* ==========================================================================
Browser Handler
========================================================================== */
const CourseFormHandler = {
addStudent: function () {
let students = document.querySelectorAll('#subscribe .form .student:not([hidden])');
students[students.length- 1].nextElementSibling.removeAttribute("hidden");
//document.querySelectorAll('#courses .form .student:not([hidden])').nextElementSibling.removeAttribute("hidden");
return false;
},
};