Navigate To Page

Apperyio.navigateTo(page, {})

Navigates to another page in the app. This function is a wrapper on top of standard jQuery Mobile navigation API.

📘

Page transitions
All available page transitions are listed on the jQuery Mobile site.

#Example
If you have a page named menuPage, to navigate to this page, you would use:

Apperyio.navigateTo('menuPage', {});

#Example
Specifying optional transition type:

Apperyio.navigateTo('menuPage', { transition: 'slideup' });

#Example
You can also specify whether the transition should be completed in reverse.

Apperyio.navigateTo('menuPage', {
  transition: 'slideup',
  reverse: false
});