Using jQuery the code will become
function openNav() {
$("#myNav").height("100%");
}
function closeNav() {
$("myNav").height("0%");
}
solved how to translate plain javascript in jquery
Using jQuery the code will become
function openNav() {
$("#myNav").height("100%");
}
function closeNav() {
$("myNav").height("0%");
}
solved how to translate plain javascript in jquery