I am using jQuery 1.6 and I would like to improve the following code (that is, write less do more):

if (row.hasClass('line_odd')) {
  row.removeClass('line_odd');
  row.addClass('line_even');
} else {
  row.removeClass('line_even');
  row.addClass('line_odd');
}

How can I do that?

link|improve this question

feedback

6 Answers

up vote 1 down vote accepted

Assuming row starts with exactly one of the two classes:

row.toggleClass("line_odd line_even")

should do the trick.

link|improve this answer
This is the way to go given your assumption. – user113716 Sep 3 '11 at 0:15
feedback

Replace the block with:

var hasOdd = row.hasClass('line_odd');
row.toggleClass('line_odd', !hasOdd).toggleClass('line_even', hasOdd);
link|improve this answer
No need of hasOdd variable – Piyush Sep 2 '11 at 23:57
2  
@Piyush: Having it will avoid calling hasClass twice. – Cybernate Sep 2 '11 at 23:59
Makes sense...! – Piyush Sep 3 '11 at 0:01
1  
+1 since it uses the exact same logic as the original and works better when row might have neither or both classes set. – coyotebush Sep 3 '11 at 0:10
feedback

I would suggest use of something like http://api.jquery.com/toggleClass/, for example:

row.toggleClass("line_odd")
   .toggleClass("line_even");

This assumes that no row element would have both the line_odd and line_even classes set initially, in order for it to have the same effect as your code.

link|improve this answer
Beat me to it! +1 – JamWaffles Sep 2 '11 at 23:50
feedback

Try the following

var isOdd = row.hasClass('line_odd');
row.toggleClass('line_odd', !isOdd);
row.toggleClass('line_even', isOdd);
link|improve this answer
No need of isOdd variable – Piyush Sep 2 '11 at 23:56
3  
@Piyush in an ideal case I would agree. The OP didn't specify that the code started up in the correct state though. Consider if the row initially started with both 'line_odd' and 'line_even' being present. In this case isOdd is needed. I agree this is a bit out there but the OP didn't specify and I wanted to make sure my simplification functioned as equally well as the original sample – JaredPar Sep 3 '11 at 0:06
Makes Sense +1. – Piyush Sep 3 '11 at 0:39
feedback

you can use chaining

if (row.hasClass('line_odd')) {
  row.removeClass('line_odd').addClass('line_even');

} else {
  row.removeClass('line_even').addClass('line_odd'); 
}
link|improve this answer
Ain't the reduced version. Can be reduced further with .toggleClass – Piyush Sep 2 '11 at 23:57
feedback
row.toggleClass('line_odd', row.hasClass('line_odd') ).toggleClass('line_even', 
row.hasClass('line_odd') );

This is the reduced version which makes use of .toggleClass alongwith the second argument that when true adds the class and if false removes the class.

link|improve this answer
2  
Won't this add the classes only when they're already set? toggleClass without the second argument already has the right behavior. – coyotebush Sep 3 '11 at 0:07
There was a typo in the code which i fixed. About your second statement regarding not needing the second argument - isn't the syntax like $(selector).toggleClass(class,switch) – Piyush Sep 3 '11 at 0:48
That's one possible syntax, yes. Without the second argument, it removes the class if present and adds it if not. You'd also still need to change the first part of you code, to add 'line_odd' only if 'line_even' is present. – coyotebush Sep 3 '11 at 4:18
feedback

Your Answer

 
or
required, but never shown

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