Versions Compared

Key

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


Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

The pui.ontimeout event, if defined, is a function that fires after a client-side session timeout occurs in a Genie or a Profound UI application. At this point, the session is over and an information screen displays. This event could be used, for example, to navigate to another page, close the browser window (where allowed), etc. 


Example:

Code Block
javascript
javascript
pui.ontimeout = function() {
  location.href = "/my_timeout_page.html"
}

...