Customize Script

asifshaikhtsn

Member
Jan 8, 2021
40
9
8
i have this script which open any random link everytime when user click on a button but i want to to customize script like this.

like when user click 1st time on a button then 1st website will be open in new page
.
and when same user click Second time on a button then 2nd website will be open in new page
.
and When same user click Third Time on a button then Main Destination Page Will be open.

<script>
<!--
/*
*/

//specify random links below. You can have as many as you want
var randomlinks=new Array()

randomlinks[0]="http://facebook.com"
randomlinks[1]="http://gmail.com"
randomlinks[2]="http://yahoo.com"
randomlinks[3]="http://cnn.com"
randomlinks[4]="http://www.geocities.com"

function randomlink(){
window.location=randomlinks[Math.floor(Math.random()*randomlinks.length)]
}
//-->
</script>
<form method="post">
<p><input type="button" name="B1" value="Button >>" onclick="randomlink()"></p> </form>
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu