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]").
