I'd like to select a specific text of an anchor and modify it at it end. I have many unordered lists on a page and I'd like to get a text of an anchor that has a specified href. here is an example:
<ul>
<li><a href="vue.php?view_id=6">vue 6</a></li>
<li><a href="vue.php?view_id=7">vue 7</a></li>
</ul>
<ul>
<li><a href="vue.php?view_id=8">vue 8</a></li>
<li><a href="vue.php?view_id=9">vue 9</a></li>
</ul>
What if I'd like to get the text of vue 6 for example, using jquery?