In my previous post (here to view), I've mentioned how to replace Javascript Alert box with CFMessageBox. Here again, to replace Javascript Confirm box with CFMessage.
2 var RandCount = Math.random();
3
4 ColdFusion.MessageBox.create(obj + RandCount, 'confirm', 'CESID', messageText, onfinish, {width:300, modal:true});
5 ColdFusion.MessageBox.show(obj + RandCount);
6}

Android
Top of Page