$("#img1").css
(
{
'background-image' : 'url(Site design/' + photoObject.image + ')',
"display" : "block",
"z-index" : currentZindex
}
);
I have this piece of code within a function to change/add style properties to div img1, which has a class. My problem is that it seems that...
'background-image' : 'url(Site design/' + photoObject.image + ')'
doesn't actually add that image in chrome or IE but it does work in Eclipse's internal browser. I'm working off the script in this demo, I've made some alterations to fit my need though.

Site design/. Try renaming the directory toimgorimagedepending on your preference. – Valjas Jul 27 '12 at 3:08imgorimagethose are just the most common names used, but the point was to remove the space and also best practice to use lowercase directory names for the web. – Valjas Jul 27 '12 at 3:41