I want my parent page to refresh when I close a Fancy Box popup frame. I have a login page inside the popup, so I need the parent page to refresh to show the new login state
$(".fancybox").fancybox({ 'width' : '75%', 'height' : '65%', 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'type' : 'iframe', 'hideOnOverlayClick': false, 'onClosed' : function() { parent.location.reload(true); } });