Skip to content

Link

In the web version this will open an external URL. In mobile this can open either via the "In App Browser" or open a page in the system browser. Based on the platform different URL types will have different results.

Attributes

  • Options
    • url - fully qualified URL
    • system - true | false

System is only valid on native mobile and will open either the "In App Browser" if false or the system browser if true. This option is only available in the browser.

Example

{
  "target":"link",
  "options":{
    "url": "https://www.google.com",
    "system": true
  }
  .. other attributes
}

Opening a page in the app store

{
  "target":"link",
  "options":{
    "url": "itms-apps://itunes.apple.com/app/{AppleId}",
    "system": true
  }
  .. other attributes
}

For Android the url would be market://details?id={GoogleId}