I have the background image working using javascript. I have it working in two ways:
Using a direct link to an external location:
Appery('mobilecontainer').css('background-image','url("http://myplace.com.au/images/mypic.jpg")');
Using the Media Manager like this:
Appery('mobilecontainer').css('background-image','url("' + Appery.getImagePath('mypic.jpg') + '")');
My question is:
I want to set the url to the picture dynamically based on a storage variable I have on the page i.e called PicName - can I do that?