HTMLを含む配列があるので、次のようになります。
var array=[
"<div anAttribute=19 class='foo'>This is the content of the foo div.</div>",
"<div anAttribute=14 class='bar'>This is the content of the bar div.</div>"
];
両方の anAttribute の値を取得したい。
array[0].$('.foo').attr("anAttribute");
19を返します。