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!