The following part of the code is not able to run in Chrome or IE, but it works properly in Mozilla FireFox.
$(document).off("click", '#startScreen_mobilecontainer [name="button_nextPage"]').on({
click: function(event) {
if (!$(this).attr('disabled')) {
Apperyio.navigateTo('Page2', {
transition: 'none',
reverse: false
});
Code: Select all
}
},
}, '#startScreen_mobilecontainer [name="button_nextPage"]'); Can someone please tell me how can I fix this?