I need to create simple time counter until the register will be open.
I have create karate class that will be on each sunday at 13:00
Now i want to allow users to register to this class from 11:00
When the counter hits the time i set ( for example 11:00) the timer will disappear and some action will be (like register button will be show).
I need to get server time (it can be done by help from php).
var date = new Date("<?php echo date("Y-m-d H:i:s"); ?>");
Now i need help to create the time counter that will show hourse and minuts that left untile 11:00 form the server time (when user hit the webpage).
For example:
If the server time now is 10:42 the counter will show 18 minuts and 00 seconds left. and the counter will start counting time down.