cl-deck-builder2/templates/navbar-js.html

11 lines
373 B
HTML
Raw Permalink Normal View History

2024-01-21 02:35:35 -05:00
<script>
$(document).ready(function() {
// Check for click events on the navbar burger icon
$(".navbar-burger").click(function() {
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
$(".navbar-burger").toggleClass("is-active");
$(".navbar-menu").toggleClass("is-active");
});
});
</script>