Page 3 of 3

Back Button ACTUALLY Take You to Previous Page

Posted: Mon Nov 16, 2015 9:46 am
by Anim

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


Back Button ACTUALLY Take You to Previous Page

Posted: Sun Nov 22, 2015 10:48 am
by Serhii Kulibaba

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


Back Button ACTUALLY Take You to Previous Page

Posted: Wed Nov 25, 2015 10:22 am
by Anim

Thankyou :)