html - Bootstrap drop down not working laravel twig -


  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>    <link href="https://fonts.googleapis.com/css?family=lato:100" rel="stylesheet" type="text/css">  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"           integrity="sha384-1q8mtjoasx8j1au+a5wdvnpi2lkffwweaa8hdddjzlplegxhjvme1fgjwpgmkzs7"           crossorigin="anonymous">   <li class="navbar-right">                 <a  data-toggle="dropdown" href="#">                     <span class="caret"></span></a>                 <ul class="dropdown-menu">                     <li><<a href="{{ url('/logout') }}">logout</a></li>                  </ul>             </li> 

when click on drop down arrow takes me /# link not open drop down menu. can me issue

i think there must class .dropdown surrounding :

 <div class="dropdown">       <a  data-toggle="dropdown" href="#">         <span class="caret"></span></a>            <ul class="dropdown-menu">               <li><<a href="{{ url('/logout') }}">logout</a></li>            </ul>     </div> 

Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -