now working the client script on incident
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10 hours ago
but i have checked it again in the system properties it was showing as false am not getting the onchange onload onsubmit oncelledit not getting even default alert or error or addinfomsg from these
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
@keerthikoru This is not an error but an informative messages/annotation which usually shows up on the script forms. This should not be causing any issues for your script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hi @keerthikoru
In ServiceNow, "isolate script" is a checkbox field on a client script form that controls whether the script runs in strict mode .By default, new client scripts are run in strict mode and not allow DOM or window objects.
If you script needs to make use of either DOM or prototype / windows objects, you need to isolate the script so that the system allows it for your script.
This "isolate script" checkbox marked as checked encourages developers to use supported ServiceNow APIs (like g_form and g_user) for form manipulation and data access, which are more stable and less likely to break with system upgrades.
The message "New client-scripts are run in strict mode, with direct DOM access disabled. ....." is an informational message within the ServiceNow platform, which indicates specific security and best-practice enforcement for new client-side JavaScript code.

