/* Custom JS - write your own functions for m20 */ jQuery(document).ready(function($){ // swap calendars on facilities room schedule page $('a.swap-cal').click( function(e){ $cal_id = $(this).attr('data-cal'); $color = $(this).attr('data-color'); $cal_url = 'https://www.google.com/calendar/embed?mode=week&src=' + $cal_id + '%40group.calendar.google.com&showPrint=0&showCalendars=0&ctz=America%2FNew_York'; // $cal_url = 'https://www.google.com/calendar/embed?mode=week&src=' + $cal_id + '%40group.calendar.google.com&bgcolor=%23' + $color + '&showPrint=0&showCalendars=0&ctz=America%2FNew_York'; $('iframe#music-room-cal').attr('src', $cal_url); $('iframe#music-room-cal').css('border', '1px solid ' + $color); e.preventDefault(); }); });