Set Page Title BX24.setTitle
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
The method BX24.setTitle sends a command to change the title of the application page.
void BX24.setTitle(String title[, Function callback])
Parameters
Required parameters are marked with *
|
Name |
Description |
|
title* |
The new title of the page. The value is converted to a string using |
|
callback |
A callback function that is executed after the command to change the title is sent. |
Code Example
How to Use Examples in Documentation
BX24.init(function () {
BX24.setTitle('New Title', function () {
console.log('Command to change the title has been sent');
});
});
Response Handling
The method does not return any data (void).
Continue Learning
Copied