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
link refresh:
jQuery(function($){ $('#refresh').click(function () { parent.location.reload(); }); }); refresh
you can give:
setTimeout(function () { parent.location.reload(); }, 1000);
or condition, for example,