I need to check if user has performed some form action after 10 am but before 11:45 am.
While I can easily look at hours as shown below, is there a solution my question?
- if ((zoho.currenttime.getHour() > 10) && (zoho.currenttime.getHour() < 12))
- {
- //some code;
- }
Cheers,
John Whitney