Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PardotGists/c7bb84a26d750b7ca3fd to your computer and use it in GitHub Desktop.
Save PardotGists/c7bb84a26d750b7ca3fd to your computer and use it in GitHub Desktop.
Enable Form Protected Content to Download Immediately.
<script type="text/javascript">
var howLongToWait = 5; //number of seconds to wait
var urlOfDownloadContent = 'http://www.example.com/whitepaper.pdf';
function triggerDownload() {
window.location = urlOfDownloadContent;
}
setTimeout('triggerDownload()', howLongToWait * 1000);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment