Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
DocumentService (jQuery.ready substitute)
The module TYPO3/
provides native JavaScript
functions to detect DOM ready-state returning a Promise<Document>
.
Internally the Promise is resolved when native DOMContent
event has
been emitted or when document.
is defined already. It means
the initial HTML document has been completely loaded and parsed, without
waiting for stylesheets, images, and sub-frames to finish loading.
$(document).ready(() => {
// your application code
});
Above jQuery code can be transformed into the following using Document
:
require(['TYPO3/CMS/Core/DocumentService'], function (DocumentService) {
DocumentService.ready().then(() => {
// your application code
});
});