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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:48:22+00:00 2026-05-25T18:48:22+00:00

With jQuery how can I apply css to a div, if another div contains

  • 0

With jQuery how can I apply css to a div, if another div contains a certain word?

So if div1 contains the text ‘TriggerWord’, I want div 2 to become red. Below is my attempt.
Thanks

     $("document").ready(function () {  
       if ($("#div1:contains('TriggerWord')")) {
          $('#div2').css('color','red');
       }
    });
  • 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-25T18:48:23+00:00Added an answer on May 25, 2026 at 6:48 pm

    Don’t quote document. Other than that your attempt is correct. The :contains() selector is what you need:

    $(document).ready(function() {  
        if ($('#div1:contains("TriggerWord")').length > 0) {
            $('#div2').css('color', 'red');
        }
    });
    

    or with the shorthand form:

    $(function() {  
        if ($('#div1:contains("TriggerWord")').length > 0) {
            $('#div2').css('color', 'red');
        }
    });
    

    And here’s a live demo.

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

Sidebar

Related Questions

Can i apply css to selected text in a contenteditable div instead of using
I want to apply a CSS class to every textbox in my site: <div
I want to know can we apply jQuery on JavaScript objects. I had few
If I read in XML via jQuery, I can't apply CSS rules to contained
I'm looking for something similar to this: Active navigation with jQuery - can't apply
JQuery - Can we capture both the p and div tags at a time
I'm trying to create a function that I can apply to a div, and
How do I apply the nice Jquery UI/CSS to a forum field? For example,
I want to apply a CSS rule to any element whose one of the
How does CSS determine when to apply one style over another? I have been

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.