Redirecting on an Interstitial Page is done using JavaScript. To embed ConversionRuler Snippets on an interstitial page, it is best to use at least a half-second delay.
The primary reason with this is for Web Browser compatibility. Some issues arise when using Apple Safari, and Mozilla FireFox and when downloading PDF or other Binary files.
Your web page should contain code which looks similar to this:
<!-- ConversionRuler snippet goes here --> <script type="text/javascript"> document.location = "http://www.example.com/downloads/proposal.pdf" </script>
To update this JavaScript to work properly with our Tracking Snippet, we need to add a delay to the redirect:
<!-- ConversionRuler snippet goes here -->
<script type="text/javascript">
function redirect_go()
{
document.location = "http://www.example.com/downloads/proposal.pdf"
}
setTimeout(redirect_go, 500);
</script>
In the above code, the 500 number is the number of milliseconds to delay before performing the redirect, which is a half-second.