Hi,
I want my background imahe change everytime I re-enter my web site....could you help me?
thanks
Printable View
Hi,
I want my background imahe change everytime I re-enter my web site....could you help me?
thanks
Create an array, like
bgimgs[1] = 'first.gif';
bgimgs[2] = 'thirty.gif';
bgimgs[32] = 'nine.gif';
Now, everytime the page loads, select a random number, get it's corresponding value in the array and
<body onLoad="document.body.background = bgimgs[rndm];">