異なるコンテキストのリストを検索して同じタグを選択するエレガントなソリューションを書きたい
//i have this not editable code
var c1$ = $('#context1'),
c2$ = $('#context2'),
c3$ = $('#context3');
//I want to improve the code and 'only from here on
var selector = 'a.select';
c1$.find(selector).css('color','red');
c3$.find(selector).css('color','red');
任意の数のコンテキストの解決策を探しています