Hey guys,
I have an issue with the popups and android.
However this does work on iOS and WP7 so far. I tried it on Android (4.1.2) with Chrome Browser and the popup does not show up.
What happens is that i got several checkbox elements in a list. If a specific checkbox was clicked, a popup should show up as well and ask the user a question. Depending on the answer (yes/no) something should happen (JS triggered). The problem: that popup does not show up in chrome.
Here is the code:
Triggered JS Code:
<script language="JavaScript">
var checked = new Array();
function saveTmpAction(btnClicked) {
if (btnClicked.attr("checked") == "checked") {
this.checked.push(btnClicked.val());
$('#popup'+btnClicked.val()).show();
{
else {
this.checked.splice($.inArray(btnClicked.val(), this.checked),1);
$('#popup'+btnClicked.val()).hide();
setTimeout(function() {
$('#popup'+btnClicked.val()+'-screen').removeClass('in').addClass('ui-screen-hidden');
}, 1);
}
}
Anyone got an idea for me? Does the JS part and the Popup like "block" each other?
Thanks for any help guys!