Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8662019
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T16:38:08+00:00 2026-06-12T16:38:08+00:00

I have a layout Jade view that has a menu via unordered list, and

  • 0

I have a layout Jade view that has a menu via unordered list, and I want to set the <li> to be <li class="active">...</li> when the current page is rendered in the browser.

I assume I will have to access the current request to determine when to set the attribute on the <li>

I can’t find any examples of how to do this so hoping someone can help

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T16:38:09+00:00Added an answer on June 12, 2026 at 4:38 pm

    Try this before your call res.render() in your route:

    res.locals.path = req.path;
    res.render('/page');
    

    or

    res.render('/page', { path: req.path });
    

    Then you would have to do a bunch of if/else statements in your view (as the above solution suggests).

    - if(currentUrl === '/')
        li(class='active')
            a(href='/') Current Driver Standings
    - else
        li
            a(href='/') Current Driver Standings
    

    I however, prefer to do this on client side instead, to keep my template files free from as much logic as possible:

    In page template file (this is ejs, not sure how to echo in jade):

    <body data-path="<%= path %>">
    

    Then with jQuery you can grab the path from body and attach an active class:

    $(function(){
        var path = $('body').attr('data-path');
        $('nav li a[href='+path+']').parents('li').addClass('active');
    });
    

    Update: You can also just use var path = window.location.pathname instead of saving it to an attribute on body

    //no need to save path to <body> tag first:
    
    $(function(){
        var path = window.location.pathname;
        $('nav li a[href='+path+']').parents('li').addClass('active');
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to have layout, which is similar by structure to Thunderbird classic view
I have a layout.jade file that contains just a basic skeleton: html head body
I have layout here and I want to insert the menu into the menu
I have a layout.jade that looks like this: html body block content block footer
I have a Layout containing a fragment. I set width of Layout to let's
I have a layout like this in which I want to display a label
I have a layout setup which can be view here: http://jsfiddle.net/Pn3ts/ It all works
I have: @layout = [:maincol => ['a'], :sidecol => []] then I want to
My layout have ImageView(iv) and TextView(tv). I want to let the tv right of
I have a layout file containing a listview that I would like to fill

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.