Hi Everybody,
I am trying to find the first link of my page which url fit to "AAA" (example).
I first try to get the links with this href:
$('a[href$="AAA"]')
Then selec the first one:
$('a[href$="AAA"]')[0]
Then target the title attribute of this link
$('a[href$="AAA"]')[0].attr("title");
But all of this return me "undefined", at each step. Do you know how to do that?
Edit: Example anchor:
<a href="contents/medias/images/news/news_test_big.jpg" title="Nouvelle réalisation en ligne 1 FR" target="_blank" class="imageLink">
Thank you in advance for your help! David