You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default CSS classes can be used to style the timer or we can specify [custom classes](https://github.com/caike/jQuery-Simple-Timer/blob/master/tests/tests.js#L342-L348)
41
+
via the `classNames` option. Like this:
42
+
43
+
```javascript
44
+
$('.timer').startTimer({
45
+
classNames: {
46
+
hours:'myClass-hours',
47
+
minutes:'myClass-minutes',
48
+
seconds:'myClass-seconds',
49
+
clearDiv:'myClass-clearDiv',
50
+
timeout:'myClass-timeout'
51
+
}
52
+
});
53
+
```
54
+
21
55
## Options
22
56
23
-
For more options, checkout [http://csouza.me/jQuery-Simple-Timer/](http://csouza.me/jQuery-Simple-Timer/)
57
+
For more options, checkout [http://csouza.me/jQuery-Simple-Timer/](http://csouza.me/jQuery-Simple-Timer/) and [some more examples.](https://rawgit.com/caike/jQuery-Simple-Timer/master/examples/index.html)
24
58
25
59
## Install
26
60
@@ -57,10 +91,6 @@ $(function(){
57
91
});
58
92
```
59
93
60
-
## Live Examples
61
-
62
-
Open [examples/index.html](https://rawgit.com/caike/jQuery-Simple-Timer/master/examples/index.html)
63
-
64
94
## Tests
65
95
66
96
Open [tests/index.html](https://rawgit.com/caike/jQuery-Simple-Timer/master/tests/index.html)
0 commit comments