<a class="example" href="https://example.com/index.php">hellau</a>
<a class="example" href="https://example1.com/index.php">hellau1</a>
<a class="example" href="https://example2.com/index.php">hellau2</a>
Need to get and go to second href somehow.
$('.example')[1].click();
doesn't work sticks to one random link until entry is removed
var link = $(".example");
link.click();
window.location.href = link[1].attr("href");
doesn't work either
Any way to make it click specific text part or something along those lines?
Text and links are dynamic