Untested, but it may be as simple as something like this:

$(".classname").mouseover(function(){
      $(this).fadein();
    }).mouseout(function(){
      $(this).fadeout();
    });

Look at the page examples for fadein and fadeout at docs.jquery.com.
If you need more control over the effects or want different fadein and
fadeout colors you may need to use the "animate" effect instead.

On Aug 30, 10:56 am, chris <[EMAIL PROTECTED]> wrote:
> anyone have a script or tutorial that just targets a .class so
> on :hover it fades in a background color than fades out a background
> color on roll out.
>
> thanks :)

Reply via email to