---
sourceDocument: Australia ServiceNow AI Platform user interface
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/pt-BR/platform-user-interface

 Release :

    - australia

ft:locale :

    - pt-BR

ft:publication_title :

    - Australia ServiceNow AI Platform user interface

ft:clusterId :

    - platux

bundleId :

    - platux

workflow :

    - Platform


---

# Client side scripting global variables

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

* Versão de lançamento: Australia
* 
* Atualizado 12 de mar. de 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 min. de leitura

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/syDVFLcekO6zyJpZXdfodA "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)
    }

**Tópicos relacionados**   

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

