Trying to use a different jquery effect depending on a variable selected in an interface.
Example code:
Example code:
Code:
function poNextSlide(nextslide, inanimation, outanimation){ $('#powrap > div').outanimation('fast', function(){//Fade out all slides. $('#powrap > div').stop(true,true); $('.poslide'+nextslide).inanimation('fast');//Once done, fade in next slide. }); }
Comment