I got a class name after I clicked a element in the document. And then I want to select all elements that has this selected class. For example;
$('.tabs1 li a').hover(function(){
var clicked = $(this).attr("class");
// this doesnt work
$('a[class="clicked"]').css("display","block");
});


class="clicked"supposed to be the element clicked in the function? what exactly this function is supposed to do? – IlyaD Aug 6 '11 at 16:05