I developed a small application using HTML5 and jQuery.
It works perfectly on localhost. I uploaded the whole code, and a specific routine did not work in any of the browsers (Chrome, Firefox or Opera).
I tested it on iPhone Safari and it also did not work. I figured I might have forgotten to climb some file, but in the last test, when I created a page shortcut on the iPhone, it worked perfectly.
Anyway, I tested on Chrome for Android and also worked without any problems.
Has anyone ever had a similar situation?
I did these two tests and both did not generate anything on the console. I think the problem might be here:
$(document).on('pagebeforeshow', '#pagRanking', function() {
console.log('before show');
})
$(document).on('pageshow', '#pagRanking', function() {
console.log('show');
})