For example, in HTML, I have this:
<ul class="benefits">
<li>Finalização rápida e fácil</li>
<li>Múltiplos endereços de envio</li>
<li>Acesso fácil a seu histórico de pedidos e status</li>
</ul>
As you can see, there are 3 li's, how do I get [0] to [1] and [2] with JQuery?
I tried something strange, but as expected did not work:
$('ul.benefits li' + [0]).text('teste');