I am using Play Framework 2 for Java and Bootstrap Helper in my project, and I want to apply the active class for the link in the sidebar. I use the side navigation bar for navigation, and by default, one link always has an active class when loading the page, so therefore at each moment of time only one link is highlighted as an active link, but how to change class="active" on the route or change the link, is there any way to check the route path - our html scala template file.
Here is my sidebar navigation code.
<ul class="nav nav-list"> <li class="active"><a href="/menu1">Menu1</a></li> <li><a href="/menu2">Menu2</a></li> <li><a href="/menu3">Menu3</a></li> </ul>
Here is my routes file
GET /menu1 com.demo.project.controllers.DemoController.menu1() GET /menu2 com.demo.project.controllers.DemoController.menu2() GET /menu3 com.demo.project.controllers.DemoController.menu3()
Please give me some suggestion about this!
source share