If you are trying to get the text of the title attribute of a link, you can use this considering that myLink is the jQuery object of your link:
myLink.attr("title")
However, if you mean the actual text of the link, you can use this:
myLink.text()
You can read the jQuery documentation for the attr method here and the documentation for the text method here .
source share