Event.Form.OpenUrl(Url)

Event.Form.OpenUrl(Url) opens a new browser tab and launches the Url passed to the function.

Applies To

Properties and Methods

None

Available

The .OpenUrl(Url) method is available in:

  • 15.03.016
  • All newer builds

Note: The .OpenUrl(Url) method and all sub-classes, properties, and methods are only available in Form Layout scripts.

Type

Method

Syntax

Event.Form.OpenUrl(Url);

Parameters

Parameter

Required

Description

Url

Yes

A valid URL address for a website. This must include http:// or https:// as part of the address.

Use http://www.ecisolutions.com, not www.ecisolutions.com

Example

Event.Form.OpenUrl('http://www.ecisolutions.com');

 

/* Expected Prompt response:

Opens ecisolutions.com in a new browser tab

*/