Hi, I have a phonegap application that is using jQuery mobile.
Everything looks good with my Galaxy S2, but when I test it on my
Galaxy Y, all the icons just appear as round blobs.
It's part of a phonegap application which I'm currently testing on
an android galaxy s2, which is where I'm seeing the problem.
I've never been able to get it to break in Google Chrome on the desktop.
I have an click event attached to this button which calls a
function which does various things, but I've modified it to alter the
title to the value of the button to aid my debugging.
var type = $("#deposit input[name=type]:checked").val();
// Gets the value of the checked button
app.count++;$(".depositOrPayment").html(app.count+"/"+type);
// Sets the title of the page
So what I'm seeing is the number of times the function has been
called / t or i depending on which button I click. However,
sometimes (particularly if I click the buttons quickly) I get
undefined as the button's value. Once this happens, it stays as
undefined no matter how many clicks I do.