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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T05:12:55+00:00 2026-06-16T05:12:55+00:00

I have a code like below If I click the finallink class, i want

  • 0

I have a code like below

If I click the “finallink” class, i want to select or display all previous elements that matches “level_” class until the “parent” class. There are so many “level” classes like “level_1, level_2… level_n.

​

<div class="parent">
    <a href="#" class="level_0">level 0 text</a>

    <div class="someclass">1</div>
    <div class="someclass">2</div>
    <div class="someclass">3</div>
    <div class="someclass">4</div>

    <h1 class="level_1">level 1 text</h1>

    <div class="someclass">1</div>
    <div class="someclass">2</div>
    <div class="someclass">3</div>
    <div class="someclass">4</div>

    <h2 class="level_2">level 2 text</h2>

    <a href="#" class="finallink">link</a>
</div>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

I tried something like this

$(".finallink").closest("h3").prevAll("level_1").css("background-color","yellow");

How Do I get all “level_” values. Example code jsfiddle

  • 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-16T05:12:56+00:00Added an answer on June 16, 2026 at 5:12 am

    You’ve said the “previous” levels, by which I mean the ones prior to the link. You’ve said “until the parent class” and as that’s the container, that means we can use all previous siblings and then filter to just the ones with one of the level_x classes:

    $(".finallink").click(function() {
        var list = $(this).prevAll().filter(function() {
            return this.className.match(/\blevel_/);
        });
    
        // Use `list`
    });
    

    Live Example | Source

    This works even if you end up with other classes in front of level_1, e.g. <h2 class="something level_1" ...>.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a code like this below, which gives me a $link that equals
I have code that looks more or less like the code below but it
I have a data that looks like this . And my code below simply
i have 2 buttons like below: <button id=btnPrevious class=icon-backward data-bind=click: $root.GoForWeek></button> <button class=icon-forward data-bind=click:
I have code snippet like below I am facing problem when I click on
I have a code snippet like below and I want to add imagebuttons into
hi all i have xml code like below <root> <key> <Question>Is the color of
I have code like below: $('a.load-more').on(click,function(){ $.get($('a.load-more').attr('href'), function(data) { $(.next-page).remove(); $('.block-grid').append(data); event.preventDefault(); }); The
I have a standard code like below to validate xml against xsd, but it
I have a code like this below in /root_project/main.cpp : #include theoraplayer/TheoraVideoClip.h unsigned int

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.