Calendar of Events

Upcoming Meetings and Events

All dates/times subject to change.

Find Previous Meetings & Events

Select meeting/event type, month, and year to find meetings, agendas, and minutes.

Select Meeting/Event Type ALL MEETINGS/EVENTS TYPES Alameda Events Day of Remembrance District 3 Health Is Not Just Health Care Oakland Events Osteoporosis Screening San Leandro Events San Lorenzo - Ashland - Cherryland Youth Collaborative San Lorenzo Events San Lorenzo Initiative San Lorenzo Initiative - Neighborhood Revitalization San Lorenzo Initiative - Steering Group San Lorenzo Initiative - Youth Dev. & Services

Select Month ALL MONTHS 01 - January 02 - February 03 - March 04 - April 05 - May 06 - June 07 - July 08 - August 09 - September 10 - October 11 - November 12 - December

Select Year ALL YEARS 2025 2024 2023 2022 2021 2020 2019

Show Meetings/Events
document.querySelector('div[role="button"]').addEventListener('keydown', function(e) { const keyD = e.key !== undefined ? e.key : e.keyCode; // e.key && e.keycode have mixed support - keycode is deprecated but support is greater than e.key // I tested within IE11, Firefox, Chrome, Edge (latest) & all had good support for e.key if ( (keyD === 'Enter' || keyD === 13) || (['Spacebar', ' '].indexOf(keyD) >= 0 || keyD === 32)) { // In IE11 and lower, e.key will equal "Spacebar" instead of ' ' // Default behavior is prevented to prevent the page to scroll when "space" is pressed e.preventDefault(); this.click(); } }); document.querySelector('select[name="meyear"]').addEventListener('change', function(e) { if(e.target.value == 'year-all') { document.querySelector('[name="memonth"]').value = 'month-all'; } }); document.querySelector('select[name="memonth"]').addEventListener('change', function(e) { if(e.target.value != 'month-all' && document.querySelector('[name="meyear"]').value == 'year-all' ) { var today = new Date(); var curYear = today.getFullYear(); document.querySelector('[name="meyear"]').value = curYear; } });
var meSubType = ''; var memonth = ''; var meetingSet = 'B'; //E for events, M for meetings, B for both - Use B for district pages, M for either BOS meetings pages var meyear = ''; var endDay = ''; var fromDate = ''; var toDate = ''; var upcoming = true; var bosHome = false; var curTypeCode = 'D3COE'; //BOSCOM for committee, MEET for regular; DXCOE for distict where X is District num jQuery(document).ready(function() { var newDate = new Date().toISOString().split('T')[0].split('-'); newDate.push(newDate.shift()); fromDate = (newDate[0] + '/' + newDate[1] + '/' + newDate[2]); getCalendarData('A'); });