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
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