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');
}
}