i have those classes:
.slider
.sliderlogo
and i have those pieces of codes:
var sc=$(".slider img").size();
$(".slider #"+count).show("slide",{direction:'right'},500);
$(".slider #"+count).delay(5500).hide("slide",{direction:'left'},500);
what's the right way to add the other "slidelogo" class to the JS so it will run on the other class as well?
generaly its like:
(".slider #1,.sliderlogo #1")
bit its not working for the above code lines. thanks in advance.