
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
jquery-simple-timer
Advanced tools
A jQuery plugin that creates a countdown timer.
Set the desired duration using either data-seconds-left or data-minutes-left data attributes.
<div class='timer' data-minutes-left=3></div>
<div class='timer' data-seconds-left=180></div>
Then start the timer with:
$('.timer').startTimer();
The plugin creates <div> 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:
<div class="timer jst-timeout" data-seconds-left="3">
<div class="jst-hours">00:</div>
<div class="jst-minutes">00:</div>
<div class="jst-seconds">00</div>
<div class="jst-clearDiv"></div>
</div>
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="jquery.js"></script>
<script src="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
FAQs
A countdown timer plugin for jQuery
The npm package jquery-simple-timer receives a total of 103 weekly downloads. As such, jquery-simple-timer popularity was classified as not popular.
We found that jquery-simple-timer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.