Deprecation: #89033 - jumpToUrl

See forge#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>.