- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2021 07:37 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2021 08:37 AM
The only way to do this is with DOM manipulation.
Write an onload client script on your table.
Bring the Isolate Script field on the form, and set it to false.
Add the below line of code:
$j('span .tabs2_tab:contains("Resolution Information")').css('background-color', 'aqua');
I have a Resolution Information section on the incident form, and this script works.
Change the text in the script according to your section name.
But its better to push back on this requirement. You can never say for sure this code or any DOM related code will work in future releases.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2021 08:32 AM
Asked and answered before it seems.
https://community.servicenow.com/community?id=community_question&sys_id=14fb0325db9cdbc01dcaf3231f961988
If correct or helpful, please indicate so!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2021 08:38 AM
I have already tried on load client script as per said by "saisowmya" in the link you have provided, however this script does nothing in Paris version

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2021 08:37 AM
The only way to do this is with DOM manipulation.
Write an onload client script on your table.
Bring the Isolate Script field on the form, and set it to false.
Add the below line of code:
$j('span .tabs2_tab:contains("Resolution Information")').css('background-color', 'aqua');
I have a Resolution Information section on the incident form, and this script works.
Change the text in the script according to your section name.
But its better to push back on this requirement. You can never say for sure this code or any DOM related code will work in future releases.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-01-2021 08:44 AM
It worked , Thank you