Moodle Mental Health and Wellbeing Workshop 8th March 22
Moodle Mental Health and Wellbeing Workshop
8th March
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}