What would I need to add to the code below to have the random redirect timeout for 5 seconds before triggering?

<script type="text/javascript">
(function(n){
 var pages = ['http://www.thestormybrain.com/2013/11/malcolm-gladwell-choice-happiness-and.html', 'http://www.thestormybrain.com/2013/11/steve-jobs-how-to-live-before-you-die.html', 'http://www.thestormybrain.com/2013/11/david-blaine-how-i-held-my-breath-for.html'];
 n = n < 3? 0 : n < 8? 1 : 2;
 window.location.replace(pages[n]);
})(Math.floor(Math.random() * 10));
</script>

I know what a regular redirect looks like, but I don't know where to place it within this special array.

<script type="text/JavaScript">
<!--
setTimeout("location.href = 'http://www.yourURL.com';",1500);
-->
</script>

Thanks for any help you're able to provide!

LastMitch commented: Why you double post? +0

Recommended Answers

All 2 Replies

Member Avatar for LastMitch

Thanks for any help you're able to provide!

@jonsan32

Isn't there someone who already help you with this?

No. No one helped.

I wasn't helped with the first, but found some extra info in the meantime. I was going to merely edit the first instead, but thought the lack of response was due to my lack of donation. So I opted to post again in order to donate to this great site. If no one knows the answer, it's ok. I've received more than my share of help from all of you. Thanks.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.