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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:33:06+00:00 2026-06-04T22:33:06+00:00

How can add a class to an a href tag with specific words? I

  • 0

How can add a class to an a href tag with specific words?
I want every instance of an a tag with ‘click here’ and ‘more information’ to add a class.

<a href="">click here</a> <a href="">more information</a>

To become:

<a href="" class="arrow">click here</a> <a href="" class="arrow">more information</a>

Some links have word-breaks on them, causing the “contains” array to miss them:

    <a title="Vision and Values" href="/about-us/vision-and-values.aspx">click
here</a>

It’s not a <br/> but the HTML is rendering the two words on separate lines

  • 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-04T22:33:07+00:00Added an answer on June 4, 2026 at 10:33 pm

    Use filter, if you want to exactly match “click here”:

    $('a').filter(function() {
        var text = $(this).text();
        return text === 'click here' || text === 'more information';
    }).addClass('arrow');
    

    Or if you have a lot of conditions, use inArray http://api.jquery.com/jQuery.inArray/:

    $('a').filter(function() {
        var whitelist = ['click here', 'more information'];
        var text = $(this).text();
        return $.inArray(text, whitelist) != -1;
    }).addClass('arrow');
    

    Because JavaScript treats 0 as loosely equal to false (i.e. 0 ==
    false, but 0 !== false), if we’re checking for the presence of value
    within array, we need to check if it’s not equal to (or greater than)
    -1.

    That way, if you have an additional text to match, you just need to add to that array.

    You could also use contains, but it will match things like click here 2 etc, basically anything that contains “click here”, but not exactly that.

    $('a:contains(click here),a:contains(more information)').addClass('arrow');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

With Mootools, you can add a eventListener to an instance of a class. Like
using jar on the windows command prompt, how can I add foo.class to a
Is there any way I can add a static extension method to a class.
In ExtJS with control() method of Ext.app.Controller class I can add listeners to components
In Objective-C I can create categories to extend a class. I can also add
When sending email using the SMTPClient class in ASP.NET C#, how can I add
I have question regarding the SQLAlchemy. How can I add into my mapped class
What Swing class can I use to implement something like this? Add To List
Question 1: I want to fade each href or img tag as they are
on my website I have more than 200 pages and I want to add

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.