Deprecation: #93506 - jQuery in tooltips

See forge#93506

Description

Passing jQuery objects to the methods show() and hide() of the module TYPO3/CMS/Backend/Tooltip has been marked as deprecated.

Impact

Passing jQuery objects to the aforementioned methods will log a deprecation message in the browser's console.

Affected Installations

All 3rd party extensions passing jQuery objects to either show() or hide() are affected.

Migration

Either pass a single HTMLElement (e.g. from document.querySelector('#my-element')) or a NodeList (e.g. from document.querySelectorAll('.my-element')) to show() or hide().