Skip to content Skip to sidebar Skip to footer

Ajax Not Working With Jquery Flip! Plugin

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 happening in firebug bu

Solution 1:

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');
    }
})

Post a Comment for "Ajax Not Working With Jquery Flip! Plugin"