Advertisement
michaelyuen

Untitled

Jul 6th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <head>
  3. </head>
  4. <style>
  5. li.active a {
  6.   background-color: black;
  7.   color: #fff;
  8. }
  9. </style>
  10. <body>
  11. <ul class="nav navbar-nav">
  12.   <li><a href="index.php">Home</a></li>
  13.   <li><a href="order.php">Order</a></li>
  14.   <li><a href="#">Location & Hours</a></li>
  15.   <li><a href="menu.php">Menus</a></li>
  16.   <li><a href="reserve.php">Reservations</a></li>
  17.   <li><a href="register.php">Register</a></li>
  18.   <li><a href="login.php">Login</a></li>
  19.   <li><a href="logout.php">Logout</a></li>
  20.     <li><a href="test.php">Logout</a></li>
  21. </ul>
  22. <script
  23.   src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
  24. <script type="text/javascript">
  25. $(document).ready(function(){
  26.     var location = window.location.pathname;
  27.     alert(location);
  28.     var file = window.location.pathname.split('/').slice(-1)[0];
  29.     console.log(file)
  30.     $('.nav li a ').each(function(){
  31.         var link = $(this).attr('href');
  32.         if(link == file){
  33.             $(this).closest('li').addClass('active');
  34.         }
  35.     });
  36. });
  37. </script>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement