Skip to content

Instantly share code, notes, and snippets.

@pjhoberman
Created May 12, 2011 22:37
Show Gist options
  • Save pjhoberman/969617 to your computer and use it in GitHub Desktop.
Save pjhoberman/969617 to your computer and use it in GitHub Desktop.
google_calendar_day_pick.js
function getDayLink(day, month)
{
var link = test;
return link;
} // getDayLink
jQuery(document).ready(function(){
jQuery( '.gce-day-number' ).live('click',function(){
var month = jQuery( '.gce-month-title' ).text(),
day = jQuery( this ).text();
console.log( getDayLink( day, month ) );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment