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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:21:09+00:00 2026-05-27T21:21:09+00:00

Overview From time to time in jQuery I want to check a condition of

  • 0

Overview

From time to time in jQuery I want to check a condition of some kind, and then based on the result add/remove a cssClass to an element.

Before calling add(remove)Class, I always check to see if that class isn’t (or is) applied already.

In code, this translates to

var myElement = $('#something'),
    someClass = 'coolClass';

if (someCondition) {

   // addClass, but only if that class isn't already on this element
   if (!myElement.hasClass(someClass)) { myElement.addClass(someClass); }

} else {

   // otherwise, removeClass, but only if it's already on this element
   if (myElement.hasClass(someClass)) { myElement.removeClass(someClass); }

}

Is there a neater way of writing the above?

I’m sure there must be a nicer way of doing this, as the nested if statements smell to me.

Clarity on toggling

Just a clarifying note (added after the answers below). It is important to note here than toggleClass(className) will not suffice as I explicitally want to remove or add based on a condition check – and need to account for the ‘toggle’ going out of sync. (Adam gives an example in a comment on Rob’s answer below).

  • 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-27T21:21:09+00:00Added an answer on May 27, 2026 at 9:21 pm
    var myElement = $('#something'),
    someClass = 'coolClass';
    myElement.toggleClass(someClass, someCondition);
    

    toggleClass does your check for you essentially. If you do a toggleClass('class', true) it’ll only actually put that class on there if it’s not already, and will never add more than one class of the same name.

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

Sidebar

Related Questions

I have a overview page containing a list with some links from which multiple
Overview: I am trying to avoid a race condition with accessing an IndexedDB from
From the An Overview of the Scala Programming Language, Second Edition : // Scala
Overview I have a Microsoft Word Add-In, written in VBA (Visual Basic for Applications),
I know very little about XML. I build reports exported from Quickbooks based in
I am looking for a way to quickly remove items from a C# List<T>
I've got an interface inheritance issue that has been vexing me for some time.
Consider this small piece of code from apscheduler.scheduler import Scheduler import time class First():
I'm trying to make an iOS 5 app that features real-time things coming from
( First time programming in PHP. Had some help. Need a bit more. )

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.