up vote 0 down vote favorite
share [g+] share [fb]

I am trying to reset a class for any links that have been previously selected by removing the end of a class name.

When the link is clicked on the class is appended with "_selected" so that the image remains highlighted. When another link is clicked on, I am trying to remove "_selected" from any link that may have been selected previously (many rollovers on the page).

Seems like the following should work:

$('a').attr('class').replace(/_selected/g, '');

Doesn't this look for all links with classes and replace instances of "_selected" with nothing?

Is there a better way to look at this? New to jQuery... Thanks

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

You can put more than one classes in an element, like:

<a class="someClass selected" />

So, with jQuery:

$("a.selected").removeClass("selected");

and of course previously you have added it with

$("your-selector").addClass("selected");

And you need to define it, of course

<style>
 A.selected {
     /*your styles here*/
 }
</style>

Not exactly what you want, but I think it is what you need :)

In fact, what you want is:

$("a").each(function(){
    $(this).attr("class", $(this).attr("class").replace(/_selected/g,""));
});
link|improve this answer
The multiple classes option worked well enough for this situation. Didn't even occur to me. Thanks much! – Kerri Oct 22 '09 at 16:02
feedback

$('a').attr('class') will return the 'class' string for each jQuery 'a' elements and not the element itself...

I think you should do something like that :

$('a').each(function(){

$(this).attr('class', $(this).attr('class').replace(/_selected/g, ''));

});

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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