I am fairly new to jQuery and javascript but I am moving in the right direction. I have tried to google and searched on here but I am having a hard time figuring out how to accomplish a pop up with event information and how to enter the information I want displayed. I would like to have it look like this http://yabdab.com/plugins/dateloom/demo/ Any help and suggestions are greatly appreciated.
You need to use the Jquery UI dialog which opens up on click of the event. $(".fc-event-inner").click( function() { $('#dialog').dialog('open'); return false; }); Should work like that i think
Here is how to do fullcalendar popup like in your example: http://mikesmithdev.com/blog/jquery-full-calendar-with-ui-modal-dialog/