I know that I get an element(s) by attribute via, e.g.
$('.js_aBunchOfElements span[data-stuff="special"]');
Yet once I store the selector in a variable:
var bunch = $('.js_aBunchOfElements span');
I am confused how to search within bunch for my elements with the attribute data-stuff="special".
1 Answer