Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $('#calendar').fullCalendar({
  2. events: [
  3. {
  4. title: 'My Event',
  5. start: '2010-01-01',
  6. myId: 123
  7. }
  8. // other events here
  9. ],
  10. eventClick: function(event) {
  11. if (event.myId) {
  12. alert(myId);
  13. }
  14. }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement