# JS functions to trigger chat widget

Javascript functions to display and hide the chat widget on your webpage.

Execute the following Javascript functions to trigger the chat widget on your web page.

#### Opening the chat widget <a href="#opening-the-chat-widget" id="opening-the-chat-widget"></a>

Copy

```
wn.open(); 
```

#### Closing the chat widget <a href="#closing-the-chat-widget" id="closing-the-chat-widget"></a>

Copy

```
wn.close();
```

#### Hiding the chat widget <a href="#hiding-the-chat-widget" id="hiding-the-chat-widget"></a>

Copy

```
wn.hideWidget();
```

#### Showing the chat widget <a href="#showing-the-chat-widget" id="showing-the-chat-widget"></a>

Copy

```
wn.showWidget();
```
