I inserted a background image using CSS in jquery mobile. This is the codes I used:
.ui-page {
background: transparent url(images/bg.png);
background-attachment:fixed;
background-repeat:no-repeat;
}
But this code doesn't work when deployed to the device.
Can anyone tell me what's wrong what did I lack?
Any help would be appreciated. Thanks in advance.