Title: Countdown timer format
Last modified: May 30, 2019

---

# Countdown timer format

 *  Resolved [tritongr](https://wordpress.org/support/users/tritongr/)
 * (@tritongr)
 * [7 years ago](https://wordpress.org/support/topic/countdown-timer-format-2/)
 * Hi
 * This is just to share how I achieved changing the timer format to mm:ss.
    I don’t
   know if this is the correct way but it worked for me. I left out hours part as
   I use only a 60 min times.
 * Thanks again for this perfect plugin!
 * In line 36 of /includes/js/hdq_script.js:
 *     ```
       //jQuery(".hdq_timer").html(hdq_timer);
       min = parseInt(hdq_timer/60);
       min = min < 10 ? '0' + min : min;
       sec = hdq_timer%60;
       sec = sec < 10 ? '0' + sec : sec;
       //hour=parseInt(min/60);
       t = min + ":" + sec;
       jQuery(".hdq_timer").html(t);
       ```
   

Viewing 1 replies (of 1 total)

 *  [mubasher99](https://wordpress.org/support/users/mubasher99/)
 * (@mubasher99)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/countdown-timer-format-2/#post-11866577)
 * great my problem resolved 🙂
    I am beginner so dont know what to do with it. 
   Please plzz just tell me where i can paste this coding to get the desired function
   active. i will really appreciate your support.

Viewing 1 replies (of 1 total)

The topic ‘Countdown timer format’ is closed to new replies.

 * ![](https://ps.w.org/hd-quiz/assets/icon-256X256.gif?rev=2936040)
 * [HD Quiz](https://wordpress.org/plugins/hd-quiz/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/hd-quiz/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/hd-quiz/)
 * [Active Topics](https://wordpress.org/support/plugin/hd-quiz/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/hd-quiz/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/hd-quiz/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [mubasher99](https://wordpress.org/support/users/mubasher99/)
 * Last activity: [6 years, 9 months ago](https://wordpress.org/support/topic/countdown-timer-format-2/#post-11866577)
 * Status: resolved