iWizard
iWizard

Reputation: 7144

How to insert fb like into fancybox?

Is there any way to insert facebook like into pop image of fancybox?

Upvotes: 0

Views: 2609

Answers (1)

Zorox
Zorox

Reputation: 2035

fancybox is just another ajax call. you can use HTML5 LIKE buttons

Just trigger the parse function when load complete.

try the simple code below after the fancybox load , you can run:

$("#foo").fancybox({
    'onComplete':function() {
             FB.XFBML.parse(); 
    }
});

http://developers.facebook.com/docs/reference/plugins/like/

Upvotes: 3

Related Questions