I want to provide a link to close the fancybox pop-up window.
Here is what I have for code, which does not work, but gives you an idea of what I am accomplishing:
$(document).ready(function() {
$('#close-button').click(function(){
close.click($.fancybox.close);
});
});
<p><a href="#" title="Close" id="close-button">« close</a></p>
I am including the fancybox and appropriate jQuery files.
Any help is appreciated.
Fix is:
adding 'type': 'iframe' to it
$(".pop-out").fancybox({
'titlePosition' : 'outside',
'transitionIn' : 'fade',
'transitionOut' : 'none',
'type' : 'iframe'
});