bootstrap navigation bar dropdown menu -
i making navigation bar website doesn't seem work. when click on products tab have made dropdown menu works dead link , takes me index.php# . please help. attaching markup :
<nav class="navbar navbar-default" > <div class="container-fluid"> <ul class="nav navbar-nav"> <li class="active"><a href="index.php" >home</a></li> <li><a href="#">contact us</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">products <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="boys.php">boys</a></li> <li><a href="girls.php">girls</a></li> </ul> </li> </ul> </div> </nav>
have included links bootstrap
and add jquery , script @ bottom wid jquery above javascript <!-- latest compiled , minified css --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <!-- optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> <!-- bootstrap core javascript ================================================== --> <!-- placed @ end of document pages load faster --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="../../dist/js/bootstrap.min.js"></script> <!-- ie10 viewport hack surface/desktop windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> <!-- latest compiled , minified javascript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
Comments
Post a Comment