Configuring Target Attributes to Launch MAS Links
You can define the following attributes that enable technicians to choose whether the MAS links open in the Go app or the default browser of the device.
target = _blank: The link opens in the default browser configured.
no target attributed: The link opens in the default browser configured.
target = _self: The link opens in the Go app on the new screen.
Examples to specify the target specifier:
<a href="http://www.servicemax.com " target="_blank>
<a href="http://www.servicemax.com " target=“_self>
window.open('http://www.google.com ', ‘_blank’)
window.open('http://www.google.com ', ‘_self’);
Was this helpful?