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