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

  • SEARCH
  • Home
  • 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 9134283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:37:57+00:00 2026-06-17T08:37:57+00:00

I am having an issue with the jquery tools scrollable plugin: http://jquerytools.org/documentation/scrollable/index.html Also using

  • 0

I am having an issue with the jquery tools scrollable plugin:
http://jquerytools.org/documentation/scrollable/index.html

Also using the scrollable autoscrolling plugin:
http://jquerytools.org/documentation/scrollable/autoscroll.html

I am trying to pause the slideshow when a link is clicked, here is my html markup:

<a id="pauseSlideshow" href="javascript:;">Pause Slideshow</a>

Here is my javascript:

<script type="text/javascript">

    var scrollableApi;

    $(document).ready(function () {

        // Initialize the slideshow 
        scrollableApi = $('#slideshow')
            .scrollable({ items: '.scrollable > .items', circular: true, mousewheel: false, speed: 1000 })
            .navigator({ navi: "#slideshow > .scrollable-nav", naviItem: "a", activeClass: "current" })
            .autoscroll({ interval: 3000, autopause: true, api: true });

        // Pause the slideshow when the link is clicked
        $("#pauseSlideshow").click(function () {  
            alert("should pause slideshow");
            scrollableApi.pause();
            alert("no error");
         });

    });
</script>

I am seeing both of my alerts display, but the slideshow is still auto scrolling. There is no console errors in Chrome inspector.

Any ideas would be great, I have found the jQuery tools documentation to be lacking in examples of how these API methods should be used. So maybe I am using them incorrectly?

  • 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-17T08:37:58+00:00Added an answer on June 17, 2026 at 8:37 am

    It seems like the autoscroll constructor isn’t chaining correctly, so isn’t returning the instance of the scrollable you are creating.

    Try changing your code slightly to get a reference to the API after it’s been initialized:

    var scrollableApi;
    
    $(document).ready(function () {
    
        // Initialize the slideshow 
        $('#slideshow')
            .scrollable({ items: '.scrollable > .items', circular: true, mousewheel: false, speed: 1000 })
            .navigator({ navi: "#slideshow > .scrollable-nav", naviItem: "a", activeClass: "current" })
            .autoscroll({ interval: 1000, autopause: true, api: true });
    
        // get a reference to the API
        scrollableApi = $('#slideshow').data('scrollable');
    
        // Pause the slideshow when the link is clicked
        $("#pauseSlideshow").click(function () {
            scrollableApi.pause();
        });
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using the following jQuery plug-in, i.e: http://flowplayer.org/tools/scrollable.html The issue I am having
I am having an issue with jquery tools / scrollable plugin. Using the circular:true
I'm having an issue using the qTip plugin with jQuery. I've created a js
I'm currently using this jQuery validate plugin and having an issue in IE where
Im having an issue with jquery autocomplete plugin. the textbox im using wont populate
I'm having an issue with the date input from jQuery Tools. When I click
I'm having an issue verifying if a checkbox is checked using jquery on Internet
I'm having an issue using jQuery autocomplete with dynamically created inputs (again created with
I'm having an issue regarding some jQuery I am using to highlight a menu
I've pretty much successfully implemented an instance of jQuery's scrollable plugin but I'm having

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.