Skip to content

gaboom/jQuery-Timer-Plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery Timer Plugin

A simple and effective way of handling JavaScript internals using jQuery. Version 1.0.0

Creating a new timer

Timers are created with an easy to remember syntax.

var timer = $.timer(timeout, callback, disabled);
  • timeout is the time to set the interval to run at, in milliseconds.
  • callback can be either a reference to another function, or an anonymous function.
  • disabled if set to true, the timer is created inactive, needs a .reset() to trigger first. Optional.

Timer methods

In the chance that you need to stop or reset your timer, you can use the following two methods:

  • .stop()
  • .reset([timeout])

The timeout option for reset is optional, as it'll use the default internal option reset.

License

jQuery Timer Plugin is licensed under the MIT License. Copyright (c) 2013 James Brooks, http://james.brooks.so ukjbrooks@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A timer plugin for jQuery

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%