I\'ve got an html anchor element:
Link Text
...and I want to get the contents of the title so
$('a').click(function() { var title = $(this).attr('title'); alert(title); });