Prevent back button event for back URL propagation
xxxxxxxxxx
$(document).bind("keydown keypress", function(e){
if( e.which == 8 ){
// 8 == backspace
e.preventDefault();
}
});
xxxxxxxxxx
//Will only work if a previous page exists in your history list
history.back()