Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8277373
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:40:28+00:00 2026-06-08T08:40:28+00:00

I have 3 jQuery Tools Scrollables setup. They work like a champ. What I

  • 0

I have 3 jQuery Tools Scrollables setup. They work like a champ.
What I can’t seem to find or wrap my head around is how to make them “delay” their initial starting point before they start scrolling.

What I don’t want is for all 3 to scroll at the exact same time.

I want the left one to scroll immediately on load. Then the middle to start it’s first time scrolling 800 milliseconds later, and then the right one to start it’s first time scrolling 1600 milliseconds later.

Here’s what I got so far… fireDelay or just Delay or InitialDelay etc… seem not to work at all.

I’m using jQuery Plugins from this site. http://www.jquerytools.org/demos/scrollable/plugins.html It’s called “Scrollable Plugins in Action”. I’m using this Standalone View of it 3 times. http://www.jquerytools.org/demos/scrollable/plugins-navigator.htm I gave each one it’s own ID to allow it to work.

Thoughts or ideas appreciated!

    <!-- javascript coding -->
    <script type="text/javascript">
    $(document).ready(function() {

    // heeeeeeeeeeere we go.
    $("#chained1").scrollable({circular: true, mousewheel: false}).navigator().autoscroll({
    fireDelay: 800,
    interval: 3000
    });

    $("#chained2").scrollable({circular: true, mousewheel: false}).navigator().autoscroll({
    fireDelay: 1600,
    interval: 3000
    });

    $("#chained3").scrollable({circular: true, mousewheel: false}).navigator().autoscroll({
    fireDelay: 3200,
    interval: 3000
    });

    });
    </script>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T08:40:30+00:00Added an answer on June 8, 2026 at 8:40 am

    There is no fireDelay property in that plugin, but JavaScript counts with setTimeout and clearTimeout functions which you can use.

    $.fn.timeout = function(fn, delay){
      var self = this;
      setTimeout(function(){
        self.each(function(){
          fn.call(this);
        });
      }, delay);
      return this;
    };
    

    Set autoplay to false, and then call .play() whenever you want to start it.

    $("#chained1")
      .scrollable({
        circular: true,
        mousewheel: false
      })
      .navigator()
      .autoscroll({
        interval: 3000,
        autoplay: false
      })
      .timeout(function(){
        $(this).data("scrollable").play();
      }, 800);​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Can JQuery UI and JQuery tools work together? I have a page
I have the jquery autocomplete example working on a test page, but can't seem
I hope somebody can help. I have been using JQuery Tools to validate my
I have setup some tabs using jquery tools and the history plugin. When i
I have a setup with a traditional form that's checked with jQuery Tools validator
I have added Facebook's like button inside the first tab of a JQuery Tools'
I am using the jQuery Tools Scrollable plugin - http://flowplayer.org/tools/scrollable.html#navigator I have created a
I am using jQuery Tools v1.2.7 and jQuery v1.7.2. I have the following code:
I've working with the slideshow from jQuery Tools, as I have a dozen times
I have jquery tabs on my website but on smaller screens the tabs wrap

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.