show/hide this revision's text 2 added 13 characters in body

Try $(this).find("a:link").

EDIT: extra info

When you $(this + "query") you're mixing types. jQuery's selector param is looking for either a query string or an object. When 'this' gets converted to a string it isn't going to be valid selector syntax. For example, you could do something like this: $("." + this.className + "[query]").

show/hide this revision's text 1

Try $(this).find("a:link").