Navigation Bar

Friday, July 31, 2009

Disable back button in browser

function noBack() {
window.history.forward();
}
in body tag add the following

onpageshow="if(event.persisted)noBack();" onload="noBack();"

Go to First Page of the browser

function GoFirstPage() {
var Backlen = history.length;
history.go(-Backlen);
//window.location.href = '';
}

No comments:

Post a Comment