Hey STMers.
Does anyone have a JS I can use on P202? I can't use PHP because I host my landers on Unbounce.
Thanks.
Jay.
Try this.. Put this code on a new page and call it "redirect.html". Then link to it on your landing page.
<script type="text/javascript">
var links = new Array();
links.push("http://www.affiliatelink1.com");
links.push("http://www.affiliatelink2.com");
links.push("http://www.affiliatelink3.com");
var link = links[Math.floor(Math.random()*links.length)];
document.location.href = link;
</script>
Thanks Jasper!
Nice share! I'm going to link this one from the PHP rotator article.