MCPcopy Index your code
hub / github.com/caike/jQuery-Simple-Timer

github.com/caike/jQuery-Simple-Timer @1.0.2

Chat with this repo
repository ↗ · DeepWiki ↗ · release 1.0.2 ↗ · + Follow
356 symbols 852 edges 7 files 34 documented · 10% updated 5y ago★ 1782 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Simple.Timer

A jQuery plugin that creates a countdown timer.

Usage

Set the desired duration using either data-seconds-left or data-minutes-left data attributes.











Then start the timer with:

$('.timer').startTimer();

The plugin creates `

` elements with the following CSS classes by default:

  • jst-hours
  • jst-minutes
  • jst-seconds
  • jst-clearDiv
  • jst-timeout (added only when the timer is finished)

Here's an example of the HTML of a finished timer:






00:




00:




00










The default CSS classes can be used to style the timer or we can specify custom classes via the classNames option. Like this:

$('.timer').startTimer({
  classNames: {
    hours: 'myClass-hours',
    minutes: 'myClass-minutes',
    seconds: 'myClass-seconds',
    clearDiv: 'myClass-clearDiv',
    timeout: 'myClass-timeout'
  }
});

Options

For more options, checkout http://csouza.me/jQuery-Simple-Timer/ and some more examples.

Install

This plugin can be installed manually from github or via npm.

Manual

Clone the repository and reference the jquery.simple.timer.js file from your html:

<script src="https://github.com/caike/jQuery-Simple-Timer/raw/1.0.2/jquery.js"></script>
<script src="https://github.com/caike/jQuery-Simple-Timer/raw/1.0.2/jquery.simple.timer.js"></script>

npm

To install from npm, run:

npm install jquery-simple-timer --save

jQuery is NOT installed automatically. We need to install jQuery (npm install jquery --save) and then pass it as an argument to the return value of the require() statement. Here's an example:

// file: client.js
"use strict";

let $ = require("jquery");
require("jquery-simple-timer")($); // passing jQuery as argument

$(function(){
  $('.timer').startTimer();
});

Tests

Open tests/index.html

Contributors

Core symbols most depended-on inside this repo

n
called by 48
jquery.js
jQuery
called by 48
examples/bundle.js
escapeText
called by 25
tests/qunit-2.9.2.js
id
called by 21
tests/qunit-2.9.2.js
objectType
called by 19
tests/qunit-2.9.2.js
done
called by 18
tests/qunit-2.9.2.js
addEvent
called by 16
tests/qunit-2.9.2.js
ea
called by 15
jquery.js

Shape

Function 356

Languages

TypeScript100%

Modules by API surface

tests/qunit-2.9.2.js163 symbols
examples/bundle.js103 symbols
jquery.js86 symbols
jquery.simple.timer.js4 symbols

For agents

$ claude mcp add jQuery-Simple-Timer \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page