That CSS is styling an anchor when hovered, what exactly do you want to convert to jQuery?
changing styles on hover goes like this: $('.menu a').hover(function(){ $(this).css('color','blue'); //mouseover },function(){ $(this).css('color','red'); //mouseout }); But it's completely unnecessary as the same can be done without scripting. - ricardo On Dec 10, 1:48 am, fony <[EMAIL PROTECTED]> wrote: > Hi all, > I'm a new guy on JQuery, now reading the JQuery in action, > and I encounter with one issue: > .menu :hover > a { ...} > > anyone who has idea how to change into JQuery format? > or is that possible with jquery, > will be very appreciate,tks