I dont know what is the problem with this ?
$('.post').live('mouseenter mouseleave', function() {
$(this).filter('anything here,a,div,.class,#id').toggleClass('hidden');
});
where as this works fine.
$('.post').live('mouseenter mouseleave', function() {
$(this).toggleClass('hidden');
});
There is an anchor which I would like to show on mouse hover. Similar to Facebook