Isidro Martínez
Isidro Martínez

Reputation: 23

href not working on navbar-toggle - bootstrap

I fail to understand why href is not working on button tag for navbar-toggler.When I press the cart tab, i should be routed to the cart.php view. This is my code:

<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="cart.php" href="cart.php"  aria-controls="navbarResponsive" aria-expanded="false"  aria-label="Toggle navigation">
    <i class="icono-navbar icon-shopping-cart"></i>
</button>

this is my nav-bar

Upvotes: 0

Views: 292

Answers (1)

Musa
Musa

Reputation: 97707

href is not a valid attribute for a button so that will not work

However, you can style an anchor to look like a button or use JavaScript to do the navigation.

Upvotes: 1

Related Questions