open()
Last updated 2/10/2024
Example
The following code opens Five help in a new tab in the web browser using the supplied URI.
opens the URI, https://help.five.org, in the web browser
function OpenFiveHelp(five, context, result) {
five.open('https://help.five.org');
return five.success(result);
}