Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to jQuery and JavaScript.

My website loads a Fancybox filled with inline content. Initially, I have the inline content hidden. When the Fancybox is triggered, it displays the hidden HTML content, including some of the social buttons that I generated from Twitter and Pinterest. I included the code that I generated from Pinterest and Twitter inside a div named "socialIconsQV" as shown below.

When I trigger the Fancybox a second time, all my HTML content is displayed inside the Fancybox except for the Pinterest and Twitter buttons. They disappear. So basically, the buttons are only displayed after the page is reloaded but not when the Fancybox is opened the second time around.

Just wondering if I have to tell the Javascript somehow to run again each time I click on the Fancybox. Not sure what to do. Any suggestions would be greatly aprpeaciated.

<div class="socialIconsQV">
    <a href="http://pinterest.com/pin/create/button/?url=MYURLSTFF" /></a>
    <a href="https://twitter.com/share" class="twitter-share-button" 
    data-url="MYURL" data-text="MyTEXT" data-via="MYSTUFF" data-count="none" data-hashtags="MYTAG">Tweet</a>
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div> 

Here is the code that triggers my FancyBox. socialIconsQV is a div inside my Fancybox.

$(".quickView").fancybox({
    'scrolling': true,
    'overlayOpacity': 0.4,
    'padding': 20,
    'showNavArrows': true
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.