- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2020 06:36 PM
Hi , how do I get the following link to open automatically in new tab instead of the same tab?
The following code is entered in journal type field.
[code]<a href="http://www.service-now.com">ServiceNow</a>[/code]
If the link is click from below screenshot, it will open in same tab and generate error.
Solved! Go to Solution.
- Labels:
-
Notifications
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2020 06:41 PM
Yes, Mike is right, use:
[code]<a href="https://google.com" target="_blank">Google</a>[/code]
Other options:
Value | Description |
---|---|
_blank | Opens the linked document in a new window or tab |
_self | Opens the linked document in the same frame as it was clicked (this is default) |
_parent | Opens the linked document in the parent frame |
_top | Opens the linked document in the full body of the window |
Also see for explanation:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2020 06:37 PM
try
[code]<a href="https://google.com" target="_blank">Google</a>[/code]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2020 06:38 PM
Hi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2020 06:41 PM
Yes, Mike is right, use:
[code]<a href="https://google.com" target="_blank">Google</a>[/code]
Other options:
Value | Description |
---|---|
_blank | Opens the linked document in a new window or tab |
_self | Opens the linked document in the same frame as it was clicked (this is default) |
_parent | Opens the linked document in the parent frame |
_top | Opens the linked document in the full body of the window |
Also see for explanation: