Skip to content
Advertisement

How to toggle a div in correct time and day of the week

I want to know how to toggle a div on correct time and week days. Example:- when sunday 12:00pm div1 will show, in monday 12:00 div2 will show others time stay hidden. This code works fine hide show on correct time but i also want to add Week days to show hide like if (day== sunday || n > '08:59' && n < '09:59'){}

JavaScript

Advertisement

Answer

You can use const d = now.getDay() which returns 0 – 6 where 0 = Sunday. Then you can chech for specific day in your if statements like if(d === 3 && … ) to check wednesday.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement