AddidsJAWdose
New Member
In the following function I see that only the first image on the android device and I do not see the second one.What am I doing wrong? I am using phonegap to construct the Android APP. I have also verified that the two images are present in the images directory. I want to see one image below another\[code\]function offers(){var html ="";var a = "data-position='fixed'";html += "<div data-role='header' " + " data-id='appHeader' data-theme='c' align='center'> <font color='white'><h1 class=''> APP1</h1></font> <span class='homeHeader'>Welcome</span>";html += "<img src='http://stackoverflow.com/questions/14071445/img/indi.png' alt='home' id='indi' ></img><img src='http://stackoverflow.com/questions/14071445/img/deals.png' alt='Get offers' id='alloffers' ></img></div>";$("#offers").append(html);}\[/code\]