views:

35

answers:

1

I'm using this project as a learning opportunity and will probable be asking some easy questions. Luckily I'm not afraid to look stupid. :-)

I've got jQuery loaded into a GreaseMonkey script. Time to start learning jQ. How do I go about adding a link to the bottom of Google Reader posts after the tag section?

A: 

Looks like something similar to:

$("#current-entry div.entry-actions").append ('<a href="foo">bar</a>');

should do it.

Brock Adams