I want to set the title text of a link that calls a function that takes an element identifier as a parameter and displays the text.
sort of
$(a).attr('title', function() {return $(this).id + "foo"});
but such a design, as I know, does not exist. What can I do? Thanks.
source share