I have following simple code for a word/tag in a tagcloud:

<a about="http://localhost/d456c6" href="http://localhost/d456c6" class="tagweight0 Resource">abda</a> 

i want to change the background on click of a word. the problem is, that i have not only one word with class "tagweight0".

Here my jQuery example code:

$('tagweight0').livequery('click', function(event) {
    $("tagweight0").toggleClass("select");
    return false;
});

This is working, but on click all words with class "tagweight0" are with changed background. How can i change the background only for the choosen word and not for all tags?

edit: can i make the change using the "href" or the "about" parameters?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted
$('.tagweight0').live('click', function(event) {
    $(this).toggleClass("select");
    return false;
});
link|improve this answer
it works now ;) – cupakob Aug 26 '09 at 8:25
feedback

how about just using css?

a:active
{
    background: #555555;
}
link|improve this answer
not in this case ;) – cupakob Aug 26 '09 at 8:27
why is this not possible? – Natrium Aug 26 '09 at 8:28
I want to have more than one word with changed background and not only during the click event. – cupakob Aug 26 '09 at 8:35
ok, I see. – Natrium Aug 26 '09 at 8:54
feedback

Your Answer

 
or
required, but never shown

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