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>
-->
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>
-->