I'm helping my friend build a website, I am trying to set it up so the homepage randomly redirects through to one of the pages, setup for three now, but with the ability to add more.
At the moment it seems to work some of the time, but doesn't go through sometimes, and it seems to redirect to one of the rooms way more than others?
<script type="text/javascript">
//RANDOMLY REDIRECTS TO A ROOM !
var doors = Math.floor(Math.random() * 3) + 1;
if (doors == 1) {
window.location.href =
"http://sarahboulton.co.uk/kitchen.html";
}
else if (doors == 2) {
window.location.href =
"http://sarahboulton.co.uk/livingroom.html";
}
else if (doors == 3) {
window.location.href =
"http://sarahboulton.co.uk/chapelbedroom.html";
}
</script>