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 7557309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T12:05:55+00:00 2026-05-30T12:05:55+00:00

Here is my markup: <ul class=tab1> <li><a href=http://site.com/some.html?param=1></li> <li><a href=http://site.com/some.html?param=2></li> <li><a href=http://site.com/some.html?param=3></li> … </ul>

  • 0

Here is my markup:

<ul class="tab1">
<li><a href="http://site.com/some.html?param=1"></li>
<li><a href="http://site.com/some.html?param=2"></li>
<li><a href="http://site.com/some.html?param=3"></li>
...
</ul>

I’m trying to compare if the current window.location matches any of the list anchors, and if true, then I’d like to do something like addClass(‘active’).

My code for checking the current location of the browser and getting the href parameters from the list elements:

// get current url parameter
var getBrowserUrl = document.URL.split('?')[1];

// get parameters of all the <li> anchors
jQuery('.tab1 a').each(function(){
    var getElementUrl = jQuery(this).attr('href').split('?')[1];
    if (getBrowserUrl == getElementUrl ) {
        jQuery(this).addClass('active');
    }
});

The jQuery(this) bit obviously isn’t working, since ‘this’ will refer to all of the list elements.

How can i specify the matching list element?

  • 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-05-30T12:05:56+00:00Added an answer on May 30, 2026 at 12:05 pm

    I’ve tested your code and made a few modifications try the following:

     <ul class="tab1">
         <li><a href="http://site.com/some.html?param=1"/></li>
         <li><a href="http://site.com/some.html?param=2"/></li>
         <li><a href="http://site.com/some.html?param=3" /></li>
    </ul>
        <script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js"></script>
         <script type="text/javascript">
             $(function () {
                 // get current url parameter
                 var getBrowserUrl = document.URL.split('?')[1];
                 // get parameters of all the <li> anchors
                 $('.tab1 a').each(function () {
                     var getElementUrl = $(this).attr('href').split('?')[1];
                     if (getBrowserUrl == getElementUrl) {
                         $(this).addClass('active');
                     }
                 });
             });
         </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Check out my example here: http://timkjaerlange.com/foobar/test.html I'm currently trying to apply a class to
Here's the literal HTML markup I have: <!DOCTYPE html> <html> <head> <title>Register</title> <link href=/Content/Site.css
I'm reading some RAW code from here http://www.zfsnippets.com/snippets/view/id/17/output/raw/table-view-helper where the author is doing a
I made a neat little photo gallery here at - http://schnell.dreamhosters.com/wallpapers.php Feel free to
I'm trying to get this working: http://drwpf.com/blog/2009/03/17/tips-and-tricks-making-value-converters-more-accessible-in-markup/ I took code from comments where we
Here is the structure of the web site: PHP index file //my class for
I have this markup: <div id=container> <h1>Heading</h1> <p>Some text</p> <div class=foo>Some stuff</div> <div class=foo>Some
Here is some asp.net markup: <tr style=display:none id=AllInRateRow> <td id=td6> All-In Fixed Rate <span
Here is my markup: <div id=why-us> <span class=heading>Why Us?</span> <div class=section> <p>Lorem ipsum dolor
I would really appreciate some help. I have a problem with html markup in

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.