> $('a').attr('title' , function() { $(this).text() } );
>
> I must be missing something simple here.

Yes, a return statement.

$('a').attr('title' , function() { return $(this).text(); });


--Klaus

Reply via email to