Recently, I've been facing an issue with the "hamburger" button in my navbar. Whenever I click on it, nothing seems to happen. This was not a problem before, and now I can't seem to figure out what went wrong or where the error lies.
If anyone could take a look at it, I would greatly appreciate it.
CSS:(This is unrelated to the navbar, but I'm including it just in case)
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,300,400,500,600,700|Roboto+Condensed:100,200,300,400,500,600,700');
/*---------------------------------Navigation Bar*/
// More CSS code goes here...
HTML:
<header>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">
<img src="assets/image/LOGO.png" class="img-fluid" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
// More HTML code for the navbar...
</nav>
<!--Navigation Bar-->
</header>