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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:11:10+00:00 2026-05-27T03:11:10+00:00

I am pretty sure my logic is flowed, so please help: I have a

  • 0

I am pretty sure my logic is flowed, so please help:

I have a classic unordered list, where some li values are different (“Hello 1”, “Hello 2”, “Hello 3”) and some li values are the same (the “Hello World” ones).

I also have a MATCH VALUE which is “Hello World” from the data-ANCHOR.

 <ul class="traffic" data-ANCHOR="Hello World">
       <li>Hello 1</li>
       <li>Hello 2</li>
       <li>Hello 3</li>
       <li>Hello World</li>
       <li>Hello World</li>
  </ul>  

I tried to make a Jquery code that checks every li If the content of the li is the same with my MATCH VALUE (from the data-ANCHOR), write something else instead.

var ANCHOR = $("ul.traffic").data('ANCHOR');
var ANCHORMATCH = $("ul.traffic li a").text();

if(ANCHOR == ANCHORMATCH){
    $('ul.traffic li a').replaceWith('hey hey');
}

It does not work, nothing happens.

But if I change the if condition to if(ANCHOR != ANCHORMATCH) – the code replaces all the <li>‘s contents with “hey hey”.

I am a newb but my gut tells me I should use a loop or something.

  • 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-27T03:11:11+00:00Added an answer on May 27, 2026 at 3:11 am
    var ANCHOR = $("ul.traffic").data('ANCHOR');
    var ANCHORMATCH = $("ul.traffic li a").text();
    
    if(ANCHOR == ANCHORMATCH){
        $('ul.traffic li a').replaceWith('hey hey');
    }
    

    This code only ever looks at the content of the first ul.traffic li a element. You need to use each to loop over each of them. (In fact, your HTML doesn’t even have a elements: I’ve modified the code accordingly.)

    var ANCHOR = $("ul.traffic").data('anchor');
    
    $('ul.traffic li').each(function() {
        var $this = $(this);
    
        if ($this.text() === ANCHOR) {
            $this.html('hey hey');
        }
    });
    

    Note also that jQuery will always move data-ANCHOR to be data('anchor'). It’s probably wise to give the attribute the normal casing (data-anchor).

    Working jsFiddle

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

Sidebar

Related Questions

I have some pretty complex reports to write. Some of them... I'm not sure
I am pretty sure I have seen this before, but I haven't found out
I am pretty new to ColdFusion ORM and I have some questions that I
Im trying to solve Euler's Project 9 using PHP. Im pretty sure my logic
Pretty sure this question counts as blasphemy to most web 2.0 proponents, but I
Pretty sure there is an easy answer to this, but just can't find the
Im pretty sure this has a simple solution. I am using jCarousellite, and i
I'm pretty sure I know the answer to this, but short of a virtual
I'm pretty sure most of us are familiar with the concept of a project's
I'm pretty sure stackoverflow.com is created with ASP.NET, but no matter where I click

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.