Salut,
je bosse sur un site et j'utilise un script générant une image aléatoire :
<!--
function rand_number(n)
{
var x;
x=Math.round(Math.random()*100);
x%=n;
return x;
}
function banner()
{
var img = new Array();
img[0]='<img src="imagerandom/image1.jpg">';
img[1]='<img src="imagerandom/image2.jpg">';
var n=rand_number(2);
document.write(img[n]);
}
J'aimerais faire apparaitre toutes les 100 images une image cachée !
Comment faire?