> For the complete documentation index, see [llms.txt](https://aeudoc.gitbook.io/developer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aeudoc.gitbook.io/developer/presentation/client-script/change-title.md).

# Change Title

## Syntax

```
$.setTitle = function (value)
```

## Arguments

<table data-header-hidden><thead><tr><th width="133">Argument</th><th>Data Type</th><th>Description</th><th>Default Value</th></tr></thead><tbody><tr><td><em>value</em></td><td>String</td><td>Title that should replace the current title.</td><td> </td></tr></tbody></table>

&#x20;

## Description

It replaces the title that is currently displayed in the Header section of the Page Container by the one that is specified in the parameter “value”.

## Example

The following program illustrates the function call with parameter “value” set to “New Title”:

```
$.setTitle("New Title");
```

The function will replace the title displayed in the Header section of the Page Container by “New Title”.
