Test / app /static /header.js
adarshadda's picture
initial commit
b0dd51d
raw
history blame
No virus
204 Bytes
function myFunction() {
var x = document.getElementById("mytopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}