Coder Social home page Coder Social logo

Comments (3)

walmik avatar walmik commented on May 29, 2024

HI Wayne!

Thanks for using this plugin! About your query, in case the duration is 0, can you not directly call the callback function? So something like,

function startTimer(duration, cbk) {
    // Early return and callback in case duration is 0
    if(duration === 0) {
        return cbk();
    }

    // Use jQuery timer to defer cbk
    // If seconds are not provided, then they default to 0
    $('#Elapsed').timer({
        duration: duration + 's',
        callback: cbk
    });
} 

Lemme know if that can work in your specific use case. If not, we can go into it further :)

from timer.jquery.

wgpalexander avatar wgpalexander commented on May 29, 2024

Hi Walmik, firstly thanks for the prompt response. As you can probably tell I'm learning Javascript so thanks for your patience! Your example of simply returning the callback works - not sure why I didn't think of that.

For info the default "Time Up!" alert for countdowns is a touch invasive - maybe in future it could be a property option like duration, callback etc.? As it stands I just commented the alert out in the JS file and it works brilliantly.

from timer.jquery.

walmik avatar walmik commented on May 29, 2024

You re very welcome Wayne :)
About the alert being used as a sample callback, I agree with you. I guess I just wanted to visually demonstrate how the callback can be used. I reckon anybody wanting to use that feature will have their own custom function to overwrite it with anyway.

from timer.jquery.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.