I already try:
Create a class and CSS the background (based on a previous developer question)
.niceBackground{
background-image: url("http://appery.io/app/rest/html5/ide/s...");JS on Page show
$('div[dsid="mobilecontainer"]').css('background-image',
'url("http://appery.io/app/rest/html5/ide/s...")');
$('div[dsid="mobilecontainer"]').css('background-repeat','repeat');
$('div[dsid="mobilecontainer"]').css('position','relative');
$('div[dsid="mobilecontainer"]').css('background-size','100% 100%');
$('div[dsid="mobilecontainer"]').css('background-attachment: fixed');However when I test on different devices these are the results:
iPhone: background do not appears
iPad: background do not appears
Macbook
a) Safari - background OK
b) Firefox - background do not appears
c) Chrome - background OKXcode/iOS Simulator (I create an WebView app) - background do not appears
What am I doing wrong?, Thanks in advance