Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to build a download button which when clicked, starts the download of a file in a new window while redirecting to a "you are currently downloading" page in the original window. There are a variety of reasons why I need it to work this way instead of redirecting to the download file from the "you are currently downloading" page.

My code works fine in IE, Chrome, and Firefox, but doesn't launch the setup.exe in Safari.

jQuery(window).load(function() {
    var link = $j('#slider_download_link a')[0];
    link.href = 'setup.exe'; // This link is dependent on the browser and OS. For example, on Mac I'd link to the Mac App Store
    link.target = "_blank";
    link.onclick = RedirectToDownloadingPage;
});

function RedirectToDownloadingPage()
{
    location.href="/downloading";
    return true;
}

Any suggestions? Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

As soon as the click handler is fired, page navigation begins and Safari apparently stops doing anything else with the current page, including letting your link fire. So, delay the click handler until after the link has been activated with setTimeout():

function RedirectToDownloadingPage()
{
    setTimeout(function()
    {
        location.href="/downloading";
    }, 100);
    return true;
}

In my experimentation, a timeout value of 0 was adequate, but it's probably a good idea to increase that slightly, just to be safe. Something like 100 should be enough.

share|improve this answer
Brilliant! Thanks gilly! – simon.d Aug 22 '12 at 3:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.