Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- /*
- * A "footer script" to make Kartra "fixed" countdown timers count a fixed amount of time on each page visit.
- * Author: Brian Katzung ([email protected])
- * Version date: 2024-06-20
- */
- const counters = $('div.countdown-section[data-countdown="fixed"]').find('div.countdown');
- setTimeout(() => counters.each(function () { $(this).stopCountDown(); $(this).countDown({ targetOffset: {
- year: 0, month: 0, day: 0, hour: 1, min: 30, sec: 0 // <-- adjust these as desired
- }}); }), 1000);
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement