Please enable JavaScript to view this site.

Process Designer

Navigation: Javascript API > User dialog functions > Dialog actions

jr_open_window_in_app(string url)

Scroll Prev Top Next More

This function can be used to open a new browser window in the JobRouter app with the transferred URL.

Please note: The function is only available for the JobRouter app.

Parameter

Type

Description

url

string

The URL to be passed.

The function does not return a value.

Example:

openDocumentLink : function () {

        var documentLink = jr_get_value('documentLink');

        

        if (documentLink == '') {

            alert('Link not provided');

            return;

        }

       jr_open_window_in_app(documentLink);

}