I am using rcarousel and would like to change the time that it stays on each slide. Right now it stays for a couple of seconds but I would like to increase this so the slide is displayed for at least 10 seconds.

Is this possible? Reading the documentation on jQuery rcarousel I couldn't see any setting that does this.

I've tried the following:

HTML

<!-- language: lang-html -->
<div id="carousel">
    <img src="http://i.imgur.com/kCURPp5.png" />
    <img src="http://i.imgur.com/kCURPp5.png" />
    <img src="http://i.imgur.com/kCURPp5.png" />
    <img src="http://i.imgur.com/kCURPp5.png" />
    <img src="http://i.imgur.com/kCURPp5.png" />
    <img src="http://i.imgur.com/kCURPp5.png" />
</div>

With the following JavaScript

<!-- language: lang-js -->
$(function () {
    $("#carousel").rcarousel({
        speed: 5000
    });
});

But this changes the transition speed. I want to change the length of time for pausing between images.

See this fiddle

What you're looking for is the interval property on the auto option.

Use the following JavaScript to set:

<!-- language: lang-js -->
$(function () {
    $("#carousel").rcarousel({
        auto: {
            enabled: true,
            interval: 1000}
    });
});

note: currently set to 1 second for demo, but add another 0 if you'd like it to take 10 seconds

jsFiddle