Almost solved this, but it seems I'm not allowed to match with variables inside the jQuery "a[]" tag. I'm trying to connect an interactive map with a list of links that show active/inactive states when the user clicks on the corresponding area on the map -

// Inside a click event with var active containing the fetch from the map

var active = "Lorem ipsum";

if($('a[rel^=' + active + ']', '.regions')) {
  if ($('a[rel^=' + active + ']', '.regions').hasClass('active')) {
    $('a[rel^=' + active + ']', '.regions').removeClass('active');
   }
   else {
     $('a[rel^=' + active + ']', '.regions').addClass('active');
   }
}
link|improve this question

65% accept rate
feedback

2 Answers

up vote 3 down vote accepted

This may be what you're looking for. I'm assuming you have some class of the links you want to toggle, so you should probably add that to the selector so you're not selecting all links, but this removes the active class from everything and then adds it back to only those with the rel attribute being what you've grabbed from the map.

var active = 'something';
$('a').removeClass('active').filter('a[rel^="'+active+'"]').addClass('active');
link|improve this answer
Sorry, I misread your code earlier, you solved it as well. Thanks! – Staffan Estberg Jan 2 at 1:38
feedback

You can't use variables inside a string. Concatenate the strings with the value of the variable:

if($('a[rel^=' + active + ']')) {
link|improve this answer
Aha! That did it, thanks! – Staffan Estberg Jan 2 at 1:35
feedback

Your Answer

 
or
required, but never shown

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