---
title: "Feature: #75386 - Get identifier in slide callback"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-75386"
source: "Changelog/8.1/Feature-75386-GetIdentifierInSlideCallback.rst"
typo3-version: "8.1"
typo3-major: 8
type: "feature"
issue: 75386
forge: "https://forge.typo3.org/issues/75386"
tags: ["JavaScript", "Backend"]
rendered: "2026-09-17T21:17:42+00:00"
---

# Feature: #75386 - Get identifier in slide callback {#feature-75386-get-identifier-in-slide-callback}

See [forge#75386](https://forge.typo3.org/issues/75386)

## Description {#description}

The callback of `Wizard.addSlide()` now has a new parameter `identifier`.

## Impact {#impact}

The identifier is passed to the callback function of `Wizard.addSlide()`.

Example code:

```javascript
Wizard.addSlide('my-identifier', 'Foobar', '', Severity.info, function($slide, settings, identifier) {
	console.log(identifier); // my-identifier
});
```
