I need to show a popup (balloon popup as in google calendar) while creating an event in the jquery full calendar.
Any best plugins for the popup which shows as ballo
I wrote my own popup which displays using div with absolute position.
" id="addCalEventClose" title="Close" alt="Close" class="cursorhand" /> //Your content goes here " title="" alt="" id="addEventBalloon" />
call the $('#addEvent').css({ left: xPos, top: yPos }).show().fadeIn(); with some javascripting to calculate the position of mouse click and show the popup.
$('#addEvent').css({ left: xPos, top: yPos }).show().fadeIn();