Hi.
A test page would be really helpful so we can see the HTML and also
the rest of the Javascript. If you can't post a test page, use www.jsbin.com
instead.
That will help us a lot.
Thanks,
-E
On Nov 24, 5:59 pm, theCrandallSter <[EMAIL PROTECTED]> wrote:
> // when the mouse is hovering over the category link
> $("#menu li a[id]").hover(function(){
>
> // hide the default image and description
> $(".js_off").fadeOut("fast");
>
> // display the slide show section whose class matches the category
> link's id
> var cat=$(this).attr('id');
> $("div.slideshow."+ cat +".ns").fadeIn("fast");
>
> // when the mouse leaves that category link
> },function(){
>
> //hide the class
> $(".slideshow").fadeOut("fast");
>
> // display the default image
> $(".js_off").fadeIn("fast");
> });
>
> The JS Debugger does not return any errors and everything works,
> except the cycle plugin, which returns no error. I am expecting the
> corresponding slide show to appear, but no luck.