Contact Us: (513) 370-5537 or info@meridian-learning.org

Meridian Learning
2063 Beechmont Avenue
Cincinnati, OH 45230

We are frequently working with students and typically check voice messages just once per day.
If you would like a more immediate response to your inquiry, please contact us via email.

function noSaturdays(date) { var weekday=new Array(7); weekday[0]="Sunday"; weekday[1]="Monday"; weekday[2]="Tuesday"; weekday[3]="Wednesday"; weekday[4]="Thursday"; weekday[5]="Friday"; weekday[6]="Saturday"; //console.log(weekday[date.getDay()]); if(weekday[date.getDay()] == 'Saturday') { return [false, '', 'Not available Saturdays']; }else if(weekday[date.getDay()] == 'Saturday') { return [false, '', 'Not available Saturdays']; } return [true]; } jQuery(window).load(function(){ jQuery('.hasDatepicker').datepicker('option', 'beforeShowDay', noSaturdays); });