Hello jmoore88
I picked a cell code (td) of your gce calendar to explain how to fetch the infos with my jQuery snippet:
<td class="gce-has-events gce-feed-121 gce-day-past">
<span class="gce-day-number">14</span>
<div class="gce-event-info">
<ul>
<li class="gce-tooltip-feed-121">
<div class="gce-list-event gce-tooltip-event">Gig Name (repeating)</div>
<div>Starts: 6:00 pm</div>
<div>Ends: April 14, 2015 - 8:30 pm</div>
<div>Location: Warmdaddy's, 1400 South Columbus Boulevard, Philadelphia, PA 19147, United States</div>
<div>Description: Weekly Blues Jam</div>
<div><a href="https://www.google.com/calendar/event?eid=OXNsaDhwY3NtbW1rdmJoNXRlbzQ3cmMxMjBfMjAxNTA0MTRUMjIwMDAwWiBpdGdiczRwb3RrYTkwMmFtcGQ0dTNvamxha0Bn&ctz=America/New_York" target="_blank">More details...</a></div>
</li>
</ul>
</div>
</td>
If a td has gce-has-events class it has events. In this td, you have your tooltip infos (gce-event-info
). The title of your event is enclosed in a div with gce-tooltip-event
class.
So instead of searching for h2, you have to search for .gce-tooltip-event
(if you only need the title of your event).
Replace in the code I gave earlier this :
qt_content = source_td.find('.gce-event-info h2');
By this :
qt_content = source_td.find('.gce-event-info .gce-tooltip-event');
@sam:
Paste a td code of your claendar here if you want me to help you ??