[jQuery] querying an array

[jQuery] querying an array


Hi,
I've build the following array using all the element in this.parent
which have a class '.RepeatedItemElement' :
this.elements = $(".RepeatedItemElement", this.parent);
Now I want to query this array and get the innerHTML of the element
which has id='headline'. I've tried the following:
var test = $(this.elements[id = "headline"]).html();
but it doesn't work.
What is the correct way of doing this ?
Thanks