hy this is my code $wpmod('.single').hover( function () { if ( $wpmod(this).is(':animated') ) { $wpmod(this).stop(true,true); } var thesrc = $wpmod(this).attr('src'); thesrc = thesrc.replace('.png','2.png'); $wpmod(this).hide(); $wpmod(this).attr('src',thesrc); $wpmod(this).fadeIn('normal'); }).mouseout( function () { if ( $wpmod(this).is(':animated') ) { $wpmod(this).stop(true,true); } var thesrc = $wpmod(this).attr('src'); thesrc = thesrc.replace('2.png','.png'); $wpmod(this).hide(); $wpmod(this).attr('src',thesrc); $wpmod(this).fadeIn('normal'); }); Code (markup): now the problem is that whenever someone hover's over 'single' , i want the icons in the post to change image , but only certain icons should only change , what line to add so that only particular class image icons change when hovered over single for e.g.
Well, this doesn't seem to complex but it would be better if you can show it on a link somewhere. Its little difficult to identify when you say "only certain icons should change"! Can you give idea of what icons should change? May be then we will be in better position to help you out..
mainly you want color of heading, author, keywords and Edit This to change at same time on hover ?? Then you need to modify above js to change class of the elements you want to give hover effect. I am not so good with jQuery, but I can always give you ideas of what to do and how, you can they try it out while learning
i actually dont know where to start editing that the main point and no knowlege on jquery , so if you can point out i might be able to ask or search somewhere out