HTML5 app without navigation Forward/Back buttons in the title bar

Is it possible to have HTML5/JET app without navigation Forward/Back buttons in the title bar?
A partner building an HTML5 app that displays their own proprietary content would like to remove Forward/Back buttons because clicking the back button after a form submit automatically cancels the form submit, which results in an error on their end.

Best Answer

Answers

  • Even if you find a solution that "works", keep in mind that anything your browser-side code does can be overridden (aka hacked) by a savvy user. So while it may be helpful to prevent accidental activation of Forward/Back functionality, don't count on it working - especially if Forward/Back could cause data integrity problems (or worse, a security hole).
  • Thanks a lot Neil. Much appreciated.