Is there a way to do what I describe in topic? For example.
jQuery(".class").click(function()
{
jQuery(this + "a").toggleClass("highlighted");
});
This doesnt work. What im trying to do is to select all the <a>
elements within this. Is it possible to achive that somehow?

