I have a counter embedded in a page and it works from the date and time specified as below;
$(document).ready(function (){
$('#fade').county({endDateTime: new Date('**2016/10/05** 15:00:00'),reflection:false,animation:'fade',theme:'black'});
});
What I want to do is set the DATE to be today's DATE if before 15:00 on Monday, Tuesday, Wednesday, Thursday or Friday AND IF before 15:00 else I want the date to roll to the next day.
One other consideration is Bank Holidays. Would it be possible to have some kind of array of days that are considered to be weekend days as well?