aquí otra manera .
Código Javascript
:
Ver originalvar direcciones = new Array(
"10000","15000","8000","5000","1500","5000" //tiempo de espera en segundos aletorio
)
function Aleatorio(){
aleat = Math.random() * direcciones.length;
aleat = Math.floor(aleat);
return direcciones[aleat];
}
function autoClick() {
setTimeout(function () {
document.getElementById('yt').click();
}, Aleatorio());
};