Changing the title of a link in jQuery

javascript, jquery

Solution

$('#helpTopicAnchorId').text('newText');

P.S the jQuery Docs make great reading

Problem

I have a link with id "helpTopicAnchorId". I want to change its text in jQuery. How do I do this?

Original source