A jQuery plugin that creates a countdown timer.
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-hoursjst-minutesjst-secondsjst-clearDivjst-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'
}
});
For more options, checkout http://csouza.me/jQuery-Simple-Timer/ and some more examples.
This plugin can be installed manually from github or via npm.
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>
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();
});
Open tests/index.html
$ claude mcp add jQuery-Simple-Timer \
-- python -m otcore.mcp_server <graph>