I'd like to be able to have an array full of jQuery selectors as such (an array of class names). This is what I'm doing at the moment though it's not functioning:
var array = [$('.one'),$('.two')];
array[0].find('.box-text').attr('src',"myImage.png");
What's wrong?