i am trying to use clue tip in Adam Shaw's Full Calendar to show pop up on events. Here is what i am doing In the eventAfterRender callback, i do this to add clueTip to each event
$(element).cluetip();
Then after setting the html using jquery in the eventClick callback, i call the dialog like this.
$("#display-event-form").cluetip({width: '200px', showTitle: false, cluezIndex: '1010'});
Instead of showing the dialog, it simply changes the html of the display-event-form div and no dialog is shown. The library and css are added correctly to the project.
I am very new to jquery and have no idea what am i doing wrong, any pointers would be really great.