TinyMCE version 4: Change the default 'Insert Link Target' from 'None (use implicit)' to another option such as 'New window (_blank)'DescriptionThis article details how to customize the TinyMCE's Insert/Modify Link functionality to change the default Target: 'None (use implicit)' to another option such as 'New Window (_blank)'. The following article is only applicable for TinyMCE version 4 and does not apply to TinyMCE version 5.Release or EnvironmentTinyMCEResolutionNavigate to the UI Page "html_insert_link_dialog"On the HTML field of this record scroll to around line 45/46 where it says:<g2:ui_select_option text="${gs.getMessage('None (use implicit)')}" value="" selected="$[jvar_selected_target]" />Change the value attribute of the line from:value="" to value="_self"*Value of empty and value of _self are the same. The reason why we're doing this is so the system will not default to this option. It will always default to an option that has value=""Now pick any other option that you want to be the new default and move this to the top, replacing the position that "None (use implicit)" previously occupied. It should look like this:Save the change. Now, when using the Insert/Modify Link functionality, it should default to Target: 'New window (_blank)'.Additional InformationPlease note that this will customize the OOB "html_insert_link_dialog" UI Page so if ServiceNow updates this UI Page in the future, that update to this UI Page will be skipped. You may consider reverting back to OOB prior to upgrading the instance if you'd like to receive the ServiceNow update to this UI Page and then re-apply the customization after. This article is only applicable for TinyMCE version 4 and does not apply to TinyMCE version 5. If the customer would like to change the version of the TinyMCE editor from v5 to v4, he can create the following property and set it to true: glide.ui.html.editor.use_v4 = true ( This would let the system use TinyMCE v4). Please note this property change needs a cache refresh(cache.do) to see the changes reflected.