Anyone know why this isn't working?

$('#screen').css({
  'background-image': [bg_num == 1 ? 'josh' : 'jessi'] + '_background.jpg',
  'background-color': 'red'
 });

The background color is getting set, but the image is not.

I've not really had much practice using square brackets in Javascript to get this kind of thing done. Anyone have tips if I'm doing something way wrong? Or no of a nice explanation of their use?

EDIT: And just to be clear, the check itself is actually happening, because if I do the same thing in a console.log() is outputs "josh_background.jpg" just fine. It's just not taking in this css setting function.

link|improve this question

1  
I'm confused, what is it you think brackets mean in Javascript (hint: they are not equivalent to parentheses)? – Kirk Woll Jan 12 '11 at 19:14
feedback

1 Answer

up vote 5 down vote accepted

EDIT:

What you were doing was creating an Array literal with the value 'josh' or 'jessi', then concatenating '_background.jpg' onto it, so it technically would work.

The issue is that you're missing the 'url()' part of the background-image value.

'background-image': 'url(' + (bg_num == 1 ? 'josh' : 'jessi') + '_background.jpg)',

...but you should still use the () for grouping instead of constructing an Array.


Original answer:

Use parentheses for grouping instead of square brackets:

'background-image': (bg_num == 1 ? 'josh' : 'jessi') + '_background.jpg',

The only use you'll have for square brackets in javascript will be for getting/setting a property on an object, or for creating an Array literal:

var arr = []; // An Array literal

arr[10] = 'someArrValue'; // set index 10


var obj = {};  // A plain object literal

obj['prop'] = 'someObjValue';  // set the "prop" property

var key = 'prop2';

obj[key] = 'someOtherObjValue'; // set the property referenced in the "key" variable

...oh, they have use in regular expression syntax of course...

link|improve this answer
1  
Note that ['jessi', 'josh'][bg_num] + '_background.jpg' might work too :-) – Pointy Jan 12 '11 at 19:19
@Pointy: True. More than one way to skin a cat. :o) – user113716 Jan 12 '11 at 19:22
Still can't get the background change to actually take. – Ian Storm Taylor Jan 12 '11 at 19:29
@Ian: Just realized that your code should still technically work, though parentheses would be better. The issue is that you don't have the url() part of the value that is needed for the background-image property. I updated my answer. – user113716 Jan 12 '11 at 19:30
Figured it out. Needed the "url(*)" around the url. – Ian Storm Taylor Jan 12 '11 at 19:32
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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