I\'m trying to use the FLIP! plugin and have it\'s content loaded by ajax. I\'m running into a problem though. It\'s just not working.
I can see the post event happenin
Try to use the callbacks to load Ajax before the animation:
$("#flipbox").flip({
direction:'tb',
onBefore: function(){
console.log('before starting the animation');
},
onAnimation: function(){
console.log('in the middle of the animation');
},
onEnd: function(){
console.log('when the animation has already ended');
}
})