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

  • SEARCH
  • Home
  • 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 7807261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T02:47:57+00:00 2026-06-02T02:47:57+00:00

I want to add class active to the <li> whenever specific url is accessed?

  • 0

I want to add class active to the <li> whenever specific url is accessed?

my code look like this,

<ul>
<li>
    <a href="link1">Link1</a>
</li>
<li>
    <a href="link2">Link2</a>
</li>
<li>
    <a href="link3">Link3</a>
</li>
<li>
    <a href="link4">Link4</a>
</li>
<li>
    <a href="link5">Link5</a>
</li>
<li>
    <a href="link6">Link6</a>
</li>
</ul>

if http://www.abc/link1 is is present in the url then only 1st li should be active and rest of them should not have any class.

Thnks in advance

  • 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-02T02:47:59+00:00Added an answer on June 2, 2026 at 2:47 am

    Here is how you could do it with JavaScript…

    var normalisePath = function(path) { return path.replace(/^\/|\/$/g, ''); },
    var path = normalisePath(window.location.pathname),
        li = document.getElementsByTagName('li'),
        i, length, a;
    
    for (i = 0, length = li.length; i < length; i++) {
        a = li[i].getElementsByTagName('a')[0];
    
        if (normalisePath(a.pathname) == path) {
            li[i].className += ' active';
            break;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to add a class of active to the ul and this following
I want to add to an href when a link becomes active My code
Here is my template code: <li class={$product.name} {if $product.name == $filter_product.name}class=active{/if}> I want to
I want to add a specific behavior to multiple forms. In this case its
I want to add class atttributes to a superclass dynamically. Furthermore, I want to
I want to add a class to multiple span elements with common classname's based
I have 2 list and i want to add a class =last to the
I am working on a Jquery accordion stuff. I want to add a class
I want to add a subview to the UITableCellView class. However, non of the
I have a class which I want to add a property with using formula

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.