Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/12/2013, 07:37
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 5 meses
Puntos: 1012
Respuesta: Cargar webs al azar

es algo sencillo
Cita:
var arr = ['pag1.html', 'pag2.html', 'pag3.html', etc...];

var indice = Math.floor((Math.random()*9)); // 9 elementos que tiene la matriz
//var indice = Math.floor((Math.random()*arr.length)); // o mejor aún por el largo de la matriz

window.location.href = arr[indice];
__________________
if(ViolenciaDeGénero) {alert('MUJER ASESINADA');}

Última edición por IsaBelM; 07/12/2013 a las 09:10