Here's my code: $('#categories-toggle').toggle(function() { $('#product-list-categories').hide("slide", {direction:"left"}, 500); }, function() { $('#product-list-categories').show("slide", {direction:"left"}, 500); });
When #categories-toggle is clicked, #product-list-categories properly slides left. However, the background on #product-list-categories disappears during the animation. Whoopsie. Here's the CSS on #product- list-categories: #product-list-categories { display: block; position: absolute; left: 0px; top: 135px; width: 190px; background-color: #666; } --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery-ui@googlegroups.com To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---