init
This commit is contained in:
14
js/nav-mobile.js
Normal file
14
js/nav-mobile.js
Normal file
@@ -0,0 +1,14 @@
|
||||
$(document).ready(function(){
|
||||
var toggleNav = false;
|
||||
$("#nav-buton-js").click(function(){
|
||||
// Your code to be executed when the button is clicked
|
||||
$(".nav-links").toggleClass("nav-links-expanded");
|
||||
|
||||
console.log("Button clicked!");
|
||||
});
|
||||
$("#drop-act").click(function(){
|
||||
// Your code to be executed when the button is clicked
|
||||
$(".dropdown-content").toggleClass("dropdown-active");
|
||||
console.log("Button clicked!");
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user