Why do Floatbox popups stop other animations when finished closing?
- by isherwood
I'm trying to essentially run a callback function when a Floatbox popup is closed via a hyperlink inside the popup. I want the page to scroll to the top and my login box to fade in. I'm using the following code:
function showLogin() {
jQuery('#header_no_theme_login_popup', parent.document.body).show();
window.parent.window.scrollTo(0,0); …