Ver Mensaje Individual
  #13 (permalink)  
Antiguo 10/12/2013, 17:50
soloandroid
 
Fecha de Ingreso: febrero-2013
Mensajes: 264
Antigüedad: 11 años, 8 meses
Puntos: 1
Respuesta: Cargar webs al azar

no me iba de ninguna de las maneras. Al final lo he codigo de otra web y ahora si funciona, aqui pongo el codigo :

<SCRIPT LANGUAGE="JavaScript">


<!-- Begin
var howMany = 2; // max number of items listed below
var page = new Array(howMany+1);

page[0]="page1.htm";
page[1]="page2.htm";
page[2]="page3.htm";

function rndnumber(){
var randscript = -1;
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1));
}
return randscript;
}
quo = rndnumber();
quox = page[quo];
window.location=(quox);
// End -->
</SCRIPT>