Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The jQuery Address plugin, which is supported from version IE6 and higher, has the possibility to detect the clicking on the navigation buttons of the browser. With an alert windows these are then blocked. This alert window contains information for the end user that explains why the browser buttons can not be used.

Example:

Code Block
$.address.externalChange(function() { $('#my-hidden-button').click(); })

Option 3: Clicking an invisible button

By using javascript, a hidden button on the page can be clicked. This button then is modeled in studio, but needs to be marked with a presentationStyle, to be recognizable as this hidden button that corresponds to the navigation.

Example:

Code Block
$.address.externalChange(function() { $('#my-hidden-button').click(); })

Option 4: Running in a portal

...