I found applying the following function to a links onclose works to close Fancybox from within an iFrame:
parent.$.fancybox.close();
I wan
You can also do this by writing a function on the parent page:
function closeFancyboxAndRedirectToUrl(url){
$.fancybox.close();
window.location = url;
}
Then on the link within the iframe, you can do this:
Close and go to page