Deprecation: #93506 - jQuery in tooltips
See forge#93506
Description
Passing jQuery objects to the methods
show
and
hide
of the
module TYPO3/
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.
) or a
Node
(e.g. from
document.
) to
show
or
hide
.