Use .text() for this:
alert($(this).text());
If you wanted the markup (.text() removes tags and such), use .html()
alert($(this).html());
In this case there's no difference, if instead you had this:
Google (External)
Then there would be:
$(this).text() //"Google (External)"
$(this).html() //"Google (External)"