Back Button ACTUALLY Take You to Previous Page
Posted: Mon Nov 16, 2015 9:46 am
Hi Kateryana,
Can you please help me with, how to disable "history.back()"?
If I disable this, will it disable for particular page or entire APP.
Animesh
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hi Kateryana,
Can you please help me with, how to disable "history.back()"?
If I disable this, will it disable for particular page or entire APP.
Animesh
Hello Anim,
Please add a JS code below on the device ready event of the start page:
predocument.addEventListener("backbutton", function (e) {
e.preventDefault();
}, false );
/pre
Thankyou ![]()