Here's my attempt at it.
$.fn.rotate= function( classes ) {
$element = this; // element the rotate is being applied to
for( var i = 0; i < classes.length; i++ ){ // look through the classes array
if( $element.hasClass( classes[i] ) ){ // check if current element has the class specified in the array
$element.removeClass( classes[i] ); // if it does then remove the class
$element.addClass( classes[ ++i % classes.length ] );
return $element; // return the current element so other functions can be applied to it.
}
}
}
You would use it by calling .rotate on the element and passing in an array of classes to rotate.
Here's an interactive demo. I just added the animate to show that you can apply other jQuery functions to the element after the rotate is finished.
$('#test').rotate(['A','B','C']);
The reason we use the modulus operator is, if i > the length of the array then we want the correct index. E.g array of classes is ['A','B','C'], if the current class on our element is 'C' then the index of the current class is 2 (arrays are 0 index based), then if we increment 2 + 1 = 3 to get the class we want to rotate it to but we don't have any class at index 3 hence 3 % 3 = 0 which is the index of 'A', that's what we want, hence the modulus will get us the correct index every time.