hi is there a way to compare a few elements
lets say
<ul>
<li>Cat</li>
<li>Dog</li>
</ul>
if i use ajax it returns
<ul>
<li>Ant</li>
<li>Cat</li>
<li>Dog</li>
<li>Fish</li>
</ul>
i need to blink ant and fish to indicate they are new there.
any ideas ?
Its not quite obvious what you want, but maybe something like this (looks for matching text of li in existing ul ands add a class ‘new’ for new li’s found and append them to the existing ul?) :