// ไฟล์ ที่ 1 คือ ไฟล์ product.html มีรายการแสดง 100 รายการ คลิก Url new page รายการที่ 50 กลางๆหน้า page ด้วยโค๊ด้านล่างนี้
<a href="view_product.html?PName='+P_Name+'" target="_bank" id="'+P_Name+'"><div class="card" >
//ไฟล์ที่ 2 คือ view_product.html ทำการกด backbutton
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
// device APIs are available
//
function onDeviceReady() {
document.addEventListener("pause", onPause, false);
document.addEventListener("resume", onResume, false);
document.addEventListener("menubutton", onMenuKeyDown, false);
document.addEventListener('backbutton', function (evt) {
if (cordova.platformId !== 'windows') {
window.history.back();
return;
}
if (window.location.href !== firstPageUrl) {
window.history.back();
} else {
throw new Error('Exit'); // This will suspend the app
}
}, false);
}