Jquery clickable block
- by Clint
HI,
I have this code for extracting the href and adding it to a parent block...
$(".new-dev").hover(function(){
$(this).css('cursor','pointer');
$('this').$('a').css('color','#696969');
},function(){
$('this').$('a').css('color','#000');
});
What I want to do is make the a within the block change color on rollover. Unsure of how to do this when using $(this).
Any advice welcome.
Thanks,
C