Can Please Someone Customize this 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>

<!--Uncomment below to use a regular text link instead
<a href="javascript:randomlink()">Random Link</a>
-->
 

hanncrz

Active member
Jan 8, 2021
173
143
43
Mars
fansqu.id
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>

<!--Uncomment below to use a regular text link instead
<a href="javascript:randomlink()">Random Link</a>
-->
if u want get fast answer and solved. i recommended ask to stackoverflow
 

Forum statistics

Threads
69,229
Messages
908,458
Members
237,124
Latest member
skull

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