how to find title text of a link

jquery

Solution

You can use `attr` to find `title` attribute.

var title = jQuery("a").attr("title"); //replace "a" with your own selector

Problem

How do I find the title text of a link in jquery.

Original source