I have this li list:
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
<li>item 4</li>
<li>item 5</li>
</ul>
How can I add a class "item-3" to the li element that contains "item 3" between the <li> and </li> tags?
Thanks in advance.