I am running JavaScript with three conditions(hidden, visible, gotopage). Two conditions are executing well but the one that needs to gotopage is not excecuting…
if (score==2)
{
$('#m1-test-button').css('visibility', 'visible');
$('#m1-test-button').on("click", function () {
phoneui.gotoPage('#m1-sample','NONE');
});
}
else
{
$('#m1-test-button').css('visibility', 'hidden');
}