In my application I read an RSS feed. Using zrssfeed (http://www.zazar.net/developers/jquery/zrssfeed/) the elements of the feed are displayed. My problem is that inside each list item, there are three
elements without ID or class.
I want to style each of these
elements differently. How can I achieve this?
<div>
<ul>
<li>
<img />
<p>text1</p>
<p>text2</p>
<p>text3</p>
</li>
<li> .. next item... </li>
</ul>
</div>
How can I achieve assigning a different ID to each of these elements?