vote up -1 vote down star

Hi

I have a DIV background which I want to change randomly on page load from a selection of 3 PNGs.

I searched around and found this code:

$(document).ready(function() {
  var randomImages = ['img-restaurante-1','img-restaurante-2','img-restaurante-3'];
  var rndNum = Math.floor(Math.random() * randomImages.length);
  $("div.lacarta").css({ background: "url(/images/" + randomImages[rndNum] + ".png) no-repeat" });
});

But for some reason it’s not working, any ideas?

flag
I added more to my answer in response to your comment, please loke into it. – Pim Jager Oct 11 at 12:12

6 Answers

vote up 0 vote down

Open firebug and see if the browser tries to load the images. Does it? Are they 404s?

link|flag
vote up 0 vote down

not sure how to do that I´m affraid. I do have firebug and work on mac. The page in question is= http://www.mesondedeus.com/new/lacarta.htm, and the div in question is #lacarta

link|flag
vote up 0 vote down

The problem is that you are searching for a div with the class lacarte in your code, but you need to search for a div with the id lacarte, like this: $('#lacarte') instead of $('div.lacarte')

(Note how jQuery uses CSS selectors)

Edit in response to your comment
You next problem is that the images do not exist, if you change te selector as i said, the code runs, but the images do not exist in http://www.mesondedeus.com/images/. Try it yourself, try loading http://www.mesondedeus.com/images/img-restaurante-3.jpg (as the script will try) and note how it doesn't load. You should make sure you have your images in the right directory.

link|flag
Thanks, have tried that but unfortunately still not working. – Vickyboy Oct 11 at 11:46
vote up 0 vote down

var rndNum = Math.floor(Math.random() * randomImages.length);

This will never give you the last image in the list, as far as I can tell.

Math.random() gives you a number between 0 and 1 (non-inclusive). And to get 2 [index of the last image] you should get floor(1*2)=2

Regarding the images not loading - just use #lacarta, instead of .lacarta (ID vs classname)

link|flag
1  
No You need Math.Floor, consider the simplest case of 1 array entry, the length is 1, but the biggest value for the index you want is 0, so you should floor the random value. – Pim Jager Oct 11 at 11:38
so what should the code look like? var rndNum = .... – Vickyboy Oct 11 at 11:48
i appreciate your patience. I´m fairly new to JQuery. Could you show me what the code should look like? – Vickyboy Oct 11 at 12:07
Yup - just discovered I can't count :/ – Joel L Oct 11 at 16:40
Yup, un-downvoted you. – Pim Jager Oct 11 at 21:11
vote up 0 vote down

Try making these changes:

$(document).ready(function() {
  var randomImages = ['img-restaurante-1','img-restaurante-2','img-restaurante-3'];
  var rndNum = Math.floor(Math.random() * randomImages.length);
  $("div#lacarta").css({ background: "url(../images/" + randomImages[rndNum] + ".png) no-repeat" });
});

I changed the div.lacarta to div#lacarta and I changed your background url from "url(/images/" to "url(../images/"

link|flag
vote up 0 vote down

finally got it to work with this code:

$(document).ready(function() { var randomImages = ['img-restaurante-1','img-restaurante-2','img-restaurante-3']; var rndNum = Math.floor(Math.random() * randomImages.length); $("div#lacarta").css({ background: "url(http://www.mesondedeus.com/new/images/" + randomImages[rndNum] + ".jpg) no-repeat" }); });

thanks for all your help

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.