Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an click event that I want to assign to more than class. The reason for this is that I'm using this event on different places in my application, and the buttons you click have different styling in the different places.

What I want is something like $('.tag' '.tag2'), which of course don't work.

    $('.tag').click(function (){
        if ($(this).hasClass('clickedTag')){
            // code here
        }

        else {
             // and here
        }
    });
share|improve this question
3  
jsfiddle.net/fe8ws should help, have a nice one! cheerios! – Tats_innit May 9 '12 at 8:03

6 Answers

up vote 8 down vote accepted

One way that comes to mind:

Approach #1

function doSomething(){
    if ($(this).hasClass('clickedTag')){
        // code here
    }

    else {
         // and here
    }
}

$('.tag1').click(doSomething);
$('.tag2').click(doSomething);

Approach #2

This will also work:

​$(".class1, .class2").click(function(){
   alert("clicked");    
});​

Fiddle: http://jsfiddle.net/Afg5s/1/

This is fine if your selectors are simple, but I prefer separate functions (approach #1) if there is a chance that logic will be reused.

You can also look at: jQuery multiple class selector for handling multiple classes on the same item.

share|improve this answer
In the first example you don't need $('.tag2').click(doSomething); cause it's obvious that there's a COMMON class .tag for both/or/more elements but just specific ones clickedTag jsbin.com/ukiguf/2/edit – Roko C. Buljan May 9 '12 at 7:56
@RokoC.Buljan - the OP says "I have an click event that I want to assign to more than class." I'm showing a way to do that. It's not clear to me whether or not there is a common class assigned to all the elements in question. If that's the case, the approach would still work. – Tim Medora May 9 '12 at 7:58
1  
Exactly, the more than one are: .tag and .clickedTag ;) All right. +1 from me (P.S: OP need votes more that we do. [you ever needed to Bounty a Question?] ) – Roko C. Buljan May 9 '12 at 7:59

You can select multiple classes at once with jQuery like this:

$('.tag, .tag2').click(function() {
    var $this = $(this);
    if ($this.hasClass('tag')) {
        // do stuff
    } else {
        // do other stuff
    }
});

Giving a 2nd parameter to the $() function, scopes the selector so $('.tag', '.tag2') looks for tag within elements with the class tag2.

share|improve this answer

It's like this:

$('.tag.clickedTag').click(function (){ 
 // this will catch with two classes
}

$('.tag.clickedTag.otherclass').click(function (){ 
 // this will catch with three classes
}

$('.tag:not(.clickedTag)').click(function (){ 
 // this will catch tag without clickedTag
}
share|improve this answer
1  
Combinatorial click functions, just what I was looking for, thanks! – Systembolaget Apr 20 at 11:00
@Systembolaget you're nick name just made me go 5 years to the past :P – fmsf Apr 20 at 19:43
My pleasure :) The future is not what it used to be! – Systembolaget Apr 21 at 8:03

Have you tried this:

 function doSomething() {
     if ($(this).hasClass('clickedTag')){
         // code here
     } else {
         // and here
     }
 }

 $('.tag1, .tag2').click(doSomething);
share|improve this answer
    $('.tag1, .tag2').on('click', function() {

      if ($(this).hasClass('clickedTag')){
         // code here
      } else {
         // and here
      }

   });

or

function dothing() {
   if ($(this).hasClass('clickedTag')){
        // code here
    } else {
        // and here
   }
}

$('.tag1, .tag2').on('click', dothing);

or

 $('[class^=tag]').on('click', dothing);
share|improve this answer
    $('[class*="tag"]').live('click', function() {
      if ($(this).hasClass('clickedTag')){
         // code here
      } else {
         // and here
      }
   });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.