---
title: "Deprecation: #89033 - jumpToUrl"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-89033"
source: "Changelog/10.1/Deprecation-89033-JumpToUrl.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Deprecation: #89033 - jumpToUrl

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

## Description

The JavaScript function `jumpToUrl()` which is widely used in TYPO3 has been marked as deprecated.

## Impact

Calling `jumpToUrl()` will cause a deprecation entry in the browser's console.

## Affected Installations

Extensions using `jumpToUrl()` implementation are affected.

## Migration

Since `jumpToUrl()` triggers a redirect only, it's safe to either use `window.location.href = 'link/to/my/module';`
or use the link in combination with plain HTML as in `<a href="link/to/my/module">my link</a>`.
