[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
thanks that is what I was looking for :) sry for the double posts! On Aug 31, 5:00 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > jQuery UI Effects does color animations. See: > > http://docs.jquery.com/UI/Effects/ColorAnimations > > - Richard > > On Sun, Aug 31, 2008 at 2:24 PM, chris <[EM

[jQuery] Re: simple fade in/out

2008-08-31 Thread Richard D. Worth
jQuery UI Effects does color animations. See: http://docs.jquery.com/UI/Effects/ColorAnimations - Richard On Sun, Aug 31, 2008 at 2:24 PM, chris <[EMAIL PROTECTED]> wrote: > > It would be greatly appreciated if you can do me a test case > scenario. :) > > I know you can do it with css but I wan

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
It would be greatly appreciated if you can do me a test case scenario. :) I know you can do it with css but I wanna mess around with this for other stuff too. On Aug 31, 1:47 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > I don't have access to a public test server to create a demo, but I'll >

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
It would be greatly appreciated if you can do me a test case scenario. :) I know you can do it with css but I wanna mess around with this for other stuff too. On Aug 31, 1:47 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > I don't have access to a public test server to create a demo, but I'll >

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
It would be greatly appreciated if you can do me a test case scenario. :) I know you can do it with css but I wanna mess around with this for other stuff too. On Aug 31, 1:47 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > I don't have access to a public test server to create a demo, but I'll >

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
Would you know how to animate it? I really wouldn't have any ideas on how to get it to do that. but I appreciate all your help! On Aug 31, 2:40 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > A simple example that shows the background color of a link changing on > hover. This same effect could

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
Would you know how to animate it? I really wouldn't have any ideas on how to get it to do that. but I appreciate all your help! On Aug 31, 2:40 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > A simple example that shows the background color of a link changing on > hover. This same effect could

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
yeah if you can create a test case it would be greatly appreciated. :) I know it can be done with just plain css, but I wanna figure this out so I can play around with it for other things too. On Aug 31, 1:47 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > I don't have access to a public test s

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
Would you know how to animate it? I really wouldn't have any ideas on how to get it to do that. but I appreciate all your help! On Aug 31, 2:40 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > A simple example that shows the background color of a link changing on > hover. This same effect could

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
Would you know how to animate it? I really wouldn't have any ideas on how to get it to do that. but I appreciate all your help! On Aug 31, 2:40 pm, Brad <[EMAIL PROTECTED]> wrote: > Chris, > > A simple example that shows the background color of a link changing on > hover. This same effect could

[jQuery] Re: simple fade in/out

2008-08-31 Thread Brad
Chris, A simple example that shows the background color of a link changing on hover. This same effect could be achieved through pure CSS. Untitled Document $(document).ready(function(){ var bg = $("a").css('background-color'); // save to restore

[jQuery] Re: simple fade in/out

2008-08-31 Thread Brad
Chris, I don't have access to a public test server to create a demo, but I'll see if I can create a test case. You might also want to look at the .hover command. Can't you do this with normal CSS, or must you have a fancy fadein/ fadeout effect? Have you considered the the case where someone ro

[jQuery] Re: simple fade in/out

2008-08-31 Thread chris
thanks for your help but I can't get it to work. Anyway you can make a test case or something for me, I am just looking for a link to have a background color and when you rollover the link it fades in a new background color, than on rollout it fades that background color out. On Aug 30, 8:09 pm,

[jQuery] Re: simple fade in/out

2008-08-30 Thread Brad
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 w