---
sourceDocument: Yokohama ServiceNow AI Platform user interface
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/yokohama/platform-user-interface

 Release :

    - yokohama

ft:locale :

    - en-US

ft:publication_title :

    - Yokohama ServiceNow AI Platform user interface

ft:clusterId :

    - platux

bundleId :

    - platux

workflow :

    - Platform


---

# Next Experience client-side scripting global variables

# Next Experience client-side scripting global variables {#ariaid-title1}

Release version: Yokohama  
Updated January 30, 2025  
![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read  
Next Experience global variables are used in client scripts to determine whether
Next Experience is applied to a page.

NOW.isUsingPolaris
:   Returns true if Next Experience is applied to the
    current page.

NOW.isPolarisWrapper
:   Returns true if the page is running in the Next Experience
    Unified Navigation. This global variable exists only in the Unified Navigation.

    For more information about the Unified Navigation,
see [Using the Next Experience Unified Navigation](https://servicenow-prod.fluidtopics.net/y8LjTFG7X~e_4mGc2lmbdA "Improved navigation to access records and data, check your notifications, and set your preferences in the Next Experience Unified Navigation.").  
Client script:

    // Reload the current page in the unified navigator if not currently in the unified nav
    if (NOW.isUsingPolaris && (!top.NOW || top.NOW.isPolarisWrapper !== "true")) {
        var currentPath = window.location.pathname + window.location.search;
        top.window.location.href = "/now/nav/ui/classic/params/target/" + encodeURIComponent(currentPath)
    }

**Related topics**   

* [PolarisUI API - Scoped](https://www.servicenow.com/docs/access?context=PolarisUIScopedAPI&version=yokohama&pubname=yokohama-api-reference&ft:locale=en-US)

