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