Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio authored Mar 20, 2024
1 parent 5b0c8bb commit 940cb95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ $clocks.stop(); //will stop all jQuery Clocks on divs with a "clock" class
$clocks.start(); //will start all jQuery Clocks on divs with a "clock" class
$clocks.first().stop(); //will stop the jQuery Clock on the first div with a "clock" class

$("#bigben").clock().stop(); //will initialize a jQuery Clock on the div with id = "bigben" and stop it in it's tracks...
$("#bigben").clock().start(); //will (re-)start the already initialized jQuery Clock on the div with id = "bigben"
const $bigben = $("#bigben").clock().stop(); //will initialize a jQuery Clock on the div with id = "bigben" and stop it in it's tracks...
$bigben.start(); //will (re-)start the already initialized jQuery Clock on the div with id = "bigben"
```

## Modifying parameters on initialized jQuery Clocks
Expand Down

0 comments on commit 940cb95

Please sign in to comment.