Guest User

Untitled

a guest
Jan 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <script language="javascript" type="text/javascript">
  2. function counter(el){
  3. var self = $(el),
  4. _el = el;
  5. self.countDown({
  6. targetDate: {
  7. 'day': <?=$config['targetDate']['day']?>,
  8. 'month': <?=$config['targetDate']['month']?>,
  9. 'year': <?=$config['targetDate']['year']?>,
  10. 'hour': <?=$config['targetDate']['hour']?>,
  11. 'min': <?=$config['targetDate']['minute']?>,
  12. 'sec': <?=$config['targetDate']['second']?>
  13. },
  14. // onComplete function
  15. onComplete: function() {
  16. self.stopCountDown();
  17. counter(_el);
  18. }
  19.  
  20. });
  21. }
  22. jQuery(function() {
  23. counter("#countdown_dashboard");
  24. });
  25. </script>
Add Comment
Please, Sign In to add comment